程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> c語言-這個輸出不帶頭結點的單鏈表的代碼哪裡錯了??

c語言-這個輸出不帶頭結點的單鏈表的代碼哪裡錯了??

編輯:編程解疑
這個輸出不帶頭結點的單鏈表的代碼哪裡錯了??

#include "stdafx.h"
#include "stdio.h"
#include "stdlib.h"
typedef int ElemType;
typedef struct node
{
ElemType data;
struct node next;
}Node;
void CreatList(Node *&L,ElemType a[],int n)
{
Node *s,*r;
int i;
L=(Node *)malloc(sizeof(Node));
r=0;
for(i=0;i {
s=(Node *)malloc(sizeof(Node));
s->data=a[i];
r->next=s;
r=s;
}
r->next=NULL;
}
void DispList(Node *L)
{
Node *p=L->next;
while(p!=NULL)
{
printf("%d",p->data);
p=p->next;
}
printf("\n");
}
int main(int argc, char
argv[])
{
Node *L;
int a[10]={1,2,3,4,5,6,7,8,9,0};
CreatList(L,a,10);
DispList(L);
return 0;
}

最佳回答:


或者改一下下面這個方法void CreatList(Node *&L,ElemType a[],int n)
{
Node *s;
int i;
L=(Node *)malloc(sizeof(Node)); L -> next = NULL ;
s=(Node *)malloc(sizeof(Node)); for(i=0;i <n ,i ++){

s->data=a[i];
s->next=L -> next;
L ->next = S;
}
}
CreatList 方法裡 就一個指針就行 最後不知道對不對 也沒運行 沒對的話,自己再改改吧!

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