Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以将两个数字输入到数组的一个单元格中。就像在图 (1,-2) 上有两个点的情况一样,我可以将它们放入同一个单元格中吗?如果可以,如何?谢谢你。
有很多方法可以实现这一目标。以下是三个常见的,它们都使用堆栈上的 C 数组:
int graph[NUMEL][2];
struct { int x, y; } graph[NUMEL];
std::pair<int,int> graph[NUMEL];