開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
VC++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
stack push 失敗
明明用除錯看push return top 都是成功把值放到stack裡的
結果一return回main function top又是指向null而不是我push進去的node
求各位大大幫忙指點問題了..
餵入的資料(Input):
3 ,5
預期的正確結果(Expected Output):
3,5
錯誤結果(Wrong Output):
無
程式碼(Code):(請善用置底文網頁, 記得排版)
struct node {
int data;
struct node *next;
};
typedef struct node Node;
Node* push(Node* top, int item);
void show(Node* a);
int _tmain(int argc, _TCHAR* argv[])
{
Node *top=NULL;
push(top,3);
push(top,5);
show(top);
return 0;
}
Node* push(Node* top, int item) {
Node* temp;
temp = (Node*) malloc(sizeof(Node));
temp->data = item;
temp->next = top;
top = temp;
return top;
}
void show(Node* top)
{
Node* tmpnode;
tmpnode = top;
printf("\n堆疊內容:");
while(tmpnode != NULL) {
printf("%d ", tmpnode->data);
tmpnode = tmpnode->next;
}
}
補充說明(Supplement):