程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> c-鏈隊列不對 不知道錯在哪裡

c-鏈隊列不對 不知道錯在哪裡

編輯:編程解疑
鏈隊列不對 不知道錯在哪裡

#include
#include
typedef struct Node {
int number;
char name[20];
Node *next;
}Qnode;
typedef struct {
Qnode *front;
Qnode *rear;
}LinkQueue;
void Enqueue(LinkQueue *q){
int n;
scanf_s("%d", &n);
for (int i = 1;i <= n;i++) {
Qnode p;
scanf_s("%d %s", &p.number, p.name, 20);
if (q->front== q->rear) {
q->front = &p;
q->rear = q->front->next=NULL;

    }
    else {
        q->rear = &p;
        q->rear = q->rear->next=NULL;
    }
}

}
void Dequeue(LinkQueue q) {
//if (q->front == q->rear) printf("empty");
printf("%d %s\n", q->front->number, q->front->name);
q->front = q->front->next;
}
int main() {
LinkQueue *q;
q = (LinkQueue
)malloc(sizeof(LinkQueue));
q->front = q->rear = NULL;
q->front=q->rear= (Qnode*)malloc(sizeof(Qnode));
q->front->next = q->rear->next = NULL;
Enqueue(q);
Dequeue(q);

}
初學寫的有點亂

最佳回答:


Qnode p;
這個肯定不行,必須用malloc動態分配,否則每次都使用同一個存儲。

參考
http://blog.csdn.net/zhangfei0554/article/details/4809156

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved