gpt4 book ai didi

c++ - 如何为boost中的节点分配标签?

转载 作者:行者123 更新时间:2023-11-28 05:38:33 25 4
gpt4 key购买 nike

我知道一个图的节点数。我想将图的节点标记为 A、B、C、D。如果我有 5 个节点,将其标记为 A、B、C、D、E。如果我有 6 个节点,将其标记为 A、B、C、D、E、F。你能为此建议任何动态方法吗?

  enum nodes { A, B, C, D, E };
char name[] = "ABCDE";

最佳答案

你的问题根本不清楚 - 我不明白你为什么需要提升或你想做什么。也就是说,让我们假设:

  • 您有一个 enum 节点类型 A..Z

  • 您需要一种在运行时将枚举值转换为字符串表示形式的方法。


gcc.godbolt.org example .

#include <cstddef>

// Use `enum class` for additional safety.
// Explictly specify the underyling type as we're going to use the
// enum values to access an array.
enum class nodes : std::size_t { A = 0, B, C, D, E, /* ... */ };

// `constexpr` allows this function to work both at run-time and
// compile-time.
constexpr auto get_char_for(nodes n) noexcept
{
// Represent the alphabet as a `constexpr` C-style string.
constexpr const char* letters = "ABCDEFGHIJKLMNOPQRSTUWXYZ";

// Access and return the alphabet letter at position `n`.
return letters[static_cast<std::size_t>(n)];
}

static_assert(get_char_for(nodes::A) == 'A');

关于c++ - 如何为boost中的节点分配标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37658022/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com