當前位置:首頁 » 編程語言 » c語言鏈表怎麼設計
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

c語言鏈表怎麼設計

發布時間: 2023-06-04 11:24:28

⑴ 用c語言建立一個有序鏈表

先按正常流程建立一個鏈表,再按照其某一個成員值進行冒泡排序(排序過程的交換,只交換鏈表指針以外的成員值)。

演示代碼如下:(演示代碼鏈表20個節點,成員值為隨機值)

#include<stdio.h>

#include<stdlib.h>

#include<time.h>

typedef struct slist

{

int a;

struct slist *next;

}SLIST;

SLIST *init();//生成20個節點成員為隨機數的鏈表

void showList(SLIST *slHead);//列印鏈表

void px(SLIST *slHead,int flag);//float=1:降序。=2升序

int main()

{

SLIST *slHead=NULL;

slHead=init();

printf("排序前: ");

showList(slHead);

printf(" 降序排序後: ");

px(slHead,1);

showList(slHead);

printf(" 升序排序後: ");

px(slHead,2);

showList(slHead);

return 0;

}

void px(SLIST *slHead,int flag)//flag=1:降序。=2升序

{

SLIST *sl0=slHead->next,*sl1=NULL,slSave,*pSave=NULL;

while(sl0)

{

sl1=sl0->next;

while(sl1)

{

if((flag==1 && sl0->a<sl1->a)||(flag==2 && sl0->a>sl1->a))

{

slSave=*sl0;

*sl0=*sl1;

sl0->next=slSave.next;

pSave=sl1->next;

*sl1=slSave;

sl1->next=pSave;

}

sl1=sl1->next;

}

sl0=sl0->next;

}

}

void showList(SLIST *slHead)

{

int i=0;

while(slHead->next)

{

printf("節點%d成員值:%d ",++i,slHead->next->a);

slHead=slHead->next;

}

printf(" ");

}

SLIST *init()

{

int num,cnt=20;

static SLIST head;

SLIST *slHead=&head,*slTail=NULL,*slNew=NULL;

slHead->next=NULL;

srand(time(NULL));

while(cnt--)

{

num=rand()%100;

slNew=(SLIST *)malloc(sizeof(SLIST));

if(!slNew)return NULL;

slNew->a=num;

slNew->next=NULL;

if(!slHead->next)

slHead->next=slNew;

else

slTail->next=slNew;

slTail=slNew;

}

return slHead;

}

⑵ 用c語言創建鏈表

void CreateList_H(Linklist L,int n)中的L是局部變數,你生成的頭結點L不能被返回,應該改為:
Linklist CreateList_H(int n)
調用方式和函數內部返回值都需要相應改動。

⑶ 怎樣創建一個線性鏈表(C語言)

/*線性鏈表的構建*/
#include<stdio.h>
#include<stdlib.h>

typedefstructLnode
{
intdata;
structLnode*next;
}Lnode;

intmain()
{
Lnode*H,*p1,*p2,*p3,*p4;
H=(Lnode*)malloc(sizeof(Lnode));
p1=(Lnode*)malloc(sizeof(Lnode));
p2=(Lnode*)malloc(sizeof(Lnode));
p3=(Lnode*)malloc(sizeof(Lnode));
p4=(Lnode*)malloc(sizeof(Lnode));

p1->data=132;
p1->next=p2;
p2->data=942;
p2->next=p3;
p3->data=158;
p3->next=182;
p4->data=231;
p4->next=NULL;

printf("%d,%d ",p1->data,p3->data);
printf("%d",p1->next->data);

return0;
}

⑷ C語言 關於鏈表的創建

#include<stdio.h>
#include<stdlib.h>

typedefintelemtype;
typedefstructLnode{
elemtypedata;
Lnode*next;
}Lnode;

Lnode*CreatList(Lnode*Head){
Head=(Lnode*)malloc(sizeof(Lnode));
Head->next=NULL;
Lnode*p=Head;
printf("請輸入元素的個數:");
inti,n;
scanf("%d",&n);
for(i=0;i<n;++i){
p->next=(Lnode*)malloc(sizeof(Lnode));
printf("請輸入第%d個元素:",i+1);
scanf("%d",&p->next->data);
p=p->next;
}
p->next=NULL;
returnHead;
}

voidAllList(Lnode*head){
Lnode*p=head->next;
while(p){
printf("%d",p->data);
p=p->next;
}
printf(" ");
}

intmain(){
Lnode*head=NULL;
head=CreatList(head);
AllList(head);
return0;
}

⑸ C語言中怎麼定義鏈表,最好把各個代碼都詳細的解釋一下!

/*creat
a
list*/
#include
"stdlib.h"
#include
"stdio.h"
struct
list
{
int
data;
struct
list
*next;
};
typedef
struct
list
node;
typedef
node
*link;
void
main()
{
link
ptr,head;
int
num,i;
ptr=(link)malloc(sizeof(node));
ptr=head;
printf("please
input
5
numbers==>\n");
for(i=0;i<=4;i++)
{
scanf("%d",&num);
ptr->data=num;
ptr->next=(link)malloc(sizeof(node));
if(i==4)
ptr->next=NULL;
else
ptr=ptr->next;
}
ptr=head;
while(ptr!=NULL)
{
printf("The
value
is
==>%d\n",ptr->data);
ptr=ptr->next;
}
}
上面是一個簡單的創建鏈表的C程序。所謂鏈表形象的講就是一個數據塊裡面存有數據,並且存有下一個數據的指針,這樣一個指一個形成一個數據鏈。這個數據鏈可以被操作,例如插入數據,刪除數據,等。至於指令,首先定義一個結構體,它存有數據和指向下一個數據塊的指針。然後分配空間。注意最後一個為NULL,當然你也可以指向開頭一個數據塊形成一個循環鏈表。

⑹ C語言指針鏈表具體怎麼弄

#include<stdlib.h>/*含malloc()的頭文件*/
#include<stdio.h>
//①定義鏈表數據結構
structnode
{
intnum;
structnode*next;
};
//函數聲明
structnode*creat();
voidprint();
main()
{

structnode*head;
head=NULL;//②建一個空表
head=creat(head);/*創建單鏈表*/
print(head);/*列印單鏈表*/
}
/******************************************/
structnode*creat(structnode*head)/*返回的是與節點相同類型的指針*/
{
structnode*p1,*p2;
inti=1;
//③利用malloc()函數向系統申請分配一個節點
p1=p2=(structnode*)malloc(sizeof(structnode));/*新節點*/
printf("請輸入值,值小於等於0結束,值存放地址為:p1_ADDR=%d ",p1);
scanf("%d",&p1->num);/*輸入節點的值*/
p1->next=NULL;/*將新節點的指針置為空*/
while(p1->num>0)/*輸入節點的數值大於0*/
{
//④將新節點的指針成員賦值為空。若是空表,將新節點連接到表頭;若是非空表,將新節點接到表尾;
if(head==NULL)
head=p1;/*空表,接入表頭*/
else
p2->next=p1;/*非空表,接到表尾*/
p2=p1;

p1=(structnode*)malloc(sizeof(structnode));/*下一個新節點*/
i=i+1;
printf("請輸入值,值小於等於0結束,值存放地址為:p%d_ADDR=%d ",i,p2);
scanf("%d",&p1->num);/*輸入節點的值*/
//⑤判斷一下是否有後續節點要接入鏈表,若有轉到3),否則結束;
}
//==============原來程序更正部分:(多謝@daling_datou提醒)================================
free(p1);//申請到的沒錄入,所以釋放掉
p1=NULL;//使指向空
p2->next=NULL;//到表尾了,指向空
printf("鏈表輸入結束(END) ");
//==============================================
returnhead;/*返回鏈表的頭指針*/
}
/*******************************************/
voidprint(structnode*head)/*出以head為頭的鏈表各節點的值*/
{
structnode*temp;
temp=head;/*取得鏈表的頭指針*/

printf(" 鏈表存入的值為: ");
while(temp!=NULL)/*只要是非空表*/
{
printf("%6d ",temp->num);/*輸出鏈表節點的值*/
temp=temp->next;/*跟蹤鏈表增長*/
}
printf("鏈表列印結束!!");
}

⑺ C語言如何創建單鏈表

C語言創建單鏈表如下:

#include"stdio.h"

#include"stdlib.h"

#include"malloc.h"

#include "iostream.h"

typedef struct node

{

intdata;

node * next;

}node , * List;

void create(int n)

{

int c;

List s,L;

L=(List)malloc(sizeof(node));

L->next=NULL;

printf("請輸入第1個數據:");

scanf("%d",&c);

L->data=c;

for(int i=2;i<=n;i++)

{

s=(List)malloc(sizeof(node));

printf("請輸入第%d個數據:",i);

scanf("%d",&c);

s->data=c;

s->next=L;

L->next =s;

}

printf("鏈表創建成功!");

}

void main()

{

int n;

printf("請你輸入鏈表的個數:");

scanf("%d",&n);

create(n);

}