รายการที่เชื่อมโยงใช้การจัดสรรหน่วยความจำแบบไดนามิกและเป็นชุดของโหนด
โหนดมีสองส่วนคือข้อมูลและลิงก์
ประเภทของรายการที่เชื่อมโยง
ประเภทของลิงค์ลิสต์ในภาษาซีมีดังนี้ −
- รายการเดี่ยว / รายการเดี่ยว
- รายการที่เชื่อมโยงแบบคู่ / แบบทวีคูณ
- รายการเชื่อมโยงแบบวงกลม
- รายการเชื่อมโยงแบบวงกลม
รายการที่เชื่อมโยงเดียว
แผนภาพด้านล่างแสดงการแสดงรายการเชื่อมโยงเดี่ยว
ตัวอย่าง
ต่อไปนี้เป็นโปรแกรม C เพื่อ แสดงตัวเลขในลำดับที่กลับกันโดยใช้รายการที่เชื่อมโยงเดียว −
#include <stdio.h> #include <stdlib.h> struct node { int num; struct node *nextptr; }*stnode; void createNodeList(int n); void reverseDispList(); void displayList(); int main(){ int n; printf("\n\n single Linked List : print it in reverse order :\n"); printf("------------------------------------------------------------------------------\n"); printf(" Input the number of nodes : "); scanf("%d", &n); createNodeList(n); printf("\n Data entered in the list are : \n"); displayList(); reverseDispList(); printf("\n The list in reverse are : \n"); displayList(); return 0; } void createNodeList(int n){ struct node *fnNode, *tmp; int num, i; stnode = (struct node *)malloc(sizeof(struct node)); if(stnode == NULL) { printf(" Memory can not be allocated."); } else{ // reads data for the node through keyboard printf(" Input data for node 1 : "); scanf("%d", &num); stnode-> num = num; stnode-> nextptr = NULL; tmp = stnode; //Creates n nodes and adds to linked list for(i=2; i<=n; i++){ fnNode = (struct node *)malloc(sizeof(struct node)); if(fnNode == NULL) { printf(" Memory can not be allocated."); break; } else{ printf(" Input data for node %d : ", i); scanf(" %d", &num); fnNode->num = num; fnNode->nextptr = NULL; tmp->nextptr = fnNode; tmp = tmp->nextptr; } } } } void reverseDispList(){ struct node *prevNode, *curNode; if(stnode != NULL){ prevNode = stnode; curNode = stnode->nextptr; stnode = stnode->nextptr; prevNode->nextptr = NULL; //convert the first node as last while(stnode != NULL){ stnode = stnode->nextptr; curNode->nextptr = prevNode; prevNode = curNode; curNode = stnode; } stnode = prevNode; //convert the last node as head } } void displayList(){ struct node *tmp; if(stnode == NULL){ printf(" No data found in the list."); } else{ tmp = stnode; while(tmp != NULL){ printf(" Data = %d\n", tmp->num); tmp = tmp->nextptr; } } }
ผลลัพธ์
เมื่อโปรแกรมข้างต้นทำงาน มันจะให้ผลลัพธ์ดังต่อไปนี้ −
Single Linked List : print it in reverse order : ------------------------------------------------------------------------------ Input the number of nodes : 5 Input data for node 1 : 12 Input data for node 2 : 45 Input data for node 3 : 11 Input data for node 4 : 9 Input data for node 5 : 10 Data entered in the list are : Data = 12 Data = 45 Data = 11 Data = 9 Data = 10 The list in reverse are : Data = 10 Data = 9 Data = 11 Data = 45 Data = 12