在结构体堆栈中使用结构体。怎么了?

问题描述 投票:0回答:0

我正在尝试在结构中使用结构

Stack
Point
结构存储两个成员,我想知道如何在不使用
vector
pair
的情况下重新组织此代码。

typedef struct {
    // Array to store stack elements
    int arr[MAX_SIZE];
    // Index of the top element in the stack
    int top;

    struct Point {

        int x;
        int y;
    } point;


} Stack;

有人知道从哪里开始吗?

我正在尝试使用结构体

(x, y)
创建一组对。我正在研究迷宫算法。尝试弄清楚如何设置此结构/结构堆栈来创建用于推送和弹出的有序对。

c++ struct stack
© www.soinside.com 2019 - 2024. All rights reserved.