1
このプログラムは、ユーザーデータを文字列の形式で取得し、リンクされたリストに入れることが想定されています。今私はリンクされたリストにデータを取得することができますが、なぜ彼らはそれらを印刷していないか分からない。リンクされたリスト項目は印刷されません
#include<stdio.h>
#include<stdlib.h>
// define the node of the stack
typedef struct node{
char name[100];
struct node *next;
}Node, *NodePtr;
// define the stack based on the linked list of nodes
typedef struct{
NodePtr top;
}StackType,*Stack;
// implement all the stack operations
Stack initStack(){
// allocate memory
Stack sp=(Stack)malloc(sizeof(StackType));
// set the top pointer to NULL
sp->top=NULL;
return sp;
}
int empty(Stack s){
return (s->top==NULL);
}
void push(Stack s, char *n){
NodePtr np= (NodePtr) malloc(sizeof(Node));
strcpy(np->name,n);
np->next=s->top;
s->top=np;
}
私はどこかポップ機能に問題があると思いますが、後に機能を終了するので、カントが
// pop the top element from the stack
char* pop(Stack s){
if(empty(s)){
printf("\n Error: Stack is empty");
return("err");
}
char hold[100];
strcpy(hold,s->top->name);
NodePtr temp=s->top;
s->top=s->top->next;
free(temp);
return hold;
}
int main(){
char n[100];
// create the stack
Stack s=initStack();
printf("Enter a list of names\n");
scanf("%s",&n);
while(strcmp(n,"end")!=0){
push(s,n);
scanf("%s",&n);
}
// print the stack
while(!empty(s))
printf("%s \n ", pop(s));
}
のようにそれを呼び出します最初のリスト? –
いずれにしても、実際に何が表示されますか?コンパイルエラー?ランタイムエラー?間違った出力?詳細を提供する。 –
'char hold [100];はローカルオート変数です。範囲外では使用できません。 – BLUEPIXY