stack的数组实现

//stack的数组实现(方法类似于类的定义)
//1:实现栈的数据定义
//2:实现操作方法的定义push pop empty full top(并不需要,因为stack[top]就是top)



//ps:栈的使用过程是先创建栈对象,然后再对此对象进行相关操作。栈定义中的top这里指定为栈顶的数组下标,top指向的是存在的数据。

//ps:在采用数组实现栈时,数组0下标对应的是栈底,top下标对应的是栈顶

#include <stdio.h>

#define  MAXSIZE 100

struct node{
	int a;
	char b;
};


//1的实现
struct stack{
	node n[MAXSIZE];//这里定义n[0]为栈底
	int top;
};


//2的实现
bool emptyStack(stack *s)
 {
	 if(s->top==-1)
		 return true;
	 return false;
 }

bool fullStack(stack *s)
{
	if(s->top==MAXSIZE-1)
		return true;
	return false;
}

bool pushStack(stack *s ,node p)
{
	if(fullStack(s))
		return 0;
	s->top++;
	s->n[s->top]=p;
	return 1;
}

bool popStack(stack *s)
{
	if(emptyStack(s))
		return false;
	s->top--;
	return true;
}



void main()
{

	stack s;
	s.top=-1;


	node a={1,'f'};
	node b={2,'e'};
	node c={3,'g'};
	pushStack(&s,a);
	pushStack(&s,b);
	pushStack(&s,c);
	printf("%2d\n",s.n[0].a);
	printf("%2d\n",s.n[1].a);
	printf("%2d\n",s.n[s.top].a);
	popStack(&s);
	printf("%2d\n",s.n[s.top].a);
}


栈是一种后进先出(LIFO)的数据结构,可以使用数组实现。下面是使用数组实现栈的示例代码(使用C++语言实现): ```cpp #include <iostream> using namespace std; class Stack { private: int* arr; // 数组 int top; // 栈顶指针 int capacity; // 栈的容量 public: Stack(int size) { arr = new int[size]; capacity = size; top = -1; } ~Stack() { delete[] arr; } void push(int value) { if (isFull()) { cout << "Stack is full!" << endl; return; } arr[++top] = value; } int pop() { if (isEmpty()) { cout << "Stack is empty!" << endl; return -1; } return arr[top--]; } int peek() { if (isEmpty()) { cout << "Stack is empty!" << endl; return -1; } return arr[top]; } bool isEmpty() { return top == -1; } bool isFull() { return top == capacity - 1; } }; int main() { Stack s(5); s.push(1); s.push(2); s.push(3); s.push(4); s.push(5); cout << "Top element is: " << s.peek() << endl; s.pop(); s.pop(); s.pop(); cout << "Top element is: " << s.peek() << endl; return 0; } ``` 在上述示例代码中,我们定义了一个`Stack`类,它有一个整型的数组`arr`、一个栈顶指针`top`、一个栈的容量`capacity`。`push`函数实现了入栈操作,`pop`函数实现了出栈操作,`peek`函数用于获取栈顶元素,`isEmpty`函数用于判断栈是否为空,`isFull`函数用于判断栈是否已满。在主函数中,我们创建了一个容量为5的栈,并进行了一些基本的操作,例如入栈、出栈、获取栈顶元素等。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值