代码拉取完成,页面将自动刷新
//
// Created by ge on 2023/12/11.
//
#include <stdio.h>
#include <stdlib.h>
typedef struct Node {
int data;
struct Node* next;
}Node;
Node * initStack() {
Node *S = (Node*) malloc(sizeof(Node));
S->data = 0;
S->next = NULL;
return S;
}
int isEmpty(Node * S) {
if(S->data == 0 || S->next == NULL){
return 1;
}else {
return 0;
}
}
int pop(Node *S){
if (isEmpty(S)){
return -1;
}else {
Node * node = S->next;
int data = node->data;
S->next = node->next;
S->data--;
free(node);
return data;
}
}
void push(Node *S, int data){
Node *node = (Node*) malloc(sizeof (Node));
node->data = data;
node->next = S->next;
S->next = node;
S->data++;
}
void printStack(Node *S) {
Node * node = S->next;
while (node) {
printf("%d -> ", node->data);
node = node->next;
}
printf("NULL");
}
int main() {
Node *S = initStack();
push(S,1);
push(S,2);
push(S,3);
push(S,4);
pop(S);
push(S,6);
push(S,7);
pop(S);
printStack(S);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。