C言語を使用したリンクリストへの要素の挿入について説明する
リンクリストは動的メモリ割り当てを使用します。つまり、それに応じて拡大および縮小します。それらはノードのコレクションとして定義されます。ここで、ノードにはデータとリンクの2つの部分があります。データ、リンク、およびリンクリストの表現を以下に示します-
リンクリストの操作
C言語のリンクリストには、次の3種類の操作があります-
- 挿入
- 削除
- トラバース
挿入
ノード2とノード3の間にノード5を挿入する例を考えてみましょう。
ここで、最初にノード5を挿入します。
最後にノード5を挿入します。
最後にノード5を挿入します。
注:
- ノードに名前が付けられていないため、ノード2の前にノード5を挿入することはできません。
- ノード5の位置が指定されていれば、2の前にノード5を挿入できます。
プログラム
以下は、リンクリストに要素を挿入するためのCプログラムです-
#include <stdio.h> #include <stdlib.h> struct node{ int val; struct node *next; }; void print_list(struct node *head){ printf("H->"); while(head){ printf("%d->", head->val); head = head->next; } printf("……\n\n"); } void insert_front(struct node **head, int value){ struct node * new_node = NULL; new_node = (struct node *)malloc(sizeof(struct node)); if (new_node == NULL){ printf(" Out of memory"); } new_node->val = value; new_node->next = *head; *head = new_node; } void insert_end(struct node **head, int value){ struct node * new_node = NULL; struct node * last = NULL; new_node = (struct node *)malloc(sizeof(struct node)); if (new_node == NULL){ printf(" Out of memory"); } new_node->val = value; new_node->next = NULL; if( *head == NULL){ *head = new_node; return; } last = *head; while(last->next) last = last->next; last->next = new_node; } void insert_after(struct node *head, int value, int after){ struct node * new_node = NULL; struct node *tmp = head; while(tmp) { if(tmp->val == after) { /*found the node*/ new_node = (struct node *)malloc(sizeof(struct node)); if (new_node == NULL) { printf("Out of memory"); } new_node->val = value; new_node->next = tmp->next; tmp->next = new_node; return; } tmp = tmp->next; } } void insert_before(struct node **head, int value, int before){ struct node * new_node = NULL; struct node * tmp = *head; new_node = (struct node *)malloc(sizeof(struct node)); if (new_node == NULL){ printf("Out of memory"); return; } new_node->val = value; if((*head)->val == before){ new_node->next = *head; *head = new_node; return; } while(tmp && tmp->next) { if(tmp->next->val == before) { new_node->next = tmp->next; tmp->next = new_node; return; } tmp = tmp->next; } /*Before node not found*/ free(new_node); } void main(){ int count = 0, i, val, after, before; struct node * head = NULL; printf("Enter no: of elements: "); scanf("%d", &count); for (i = 0; i < count; i++){ printf("Enter %dth element: ", i); scanf("%d", &val); insert_front(&head, val); } printf("starting list: "); print_list(head); printf("enter front element: "); scanf("%d", &val); insert_front(&head, val); printf("items after insertion: "); print_list(head); printf("enter last element: "); scanf("%d", &val); insert_end(&head, val); printf("items after insertion: "); print_list(head); printf("Enter an ele to insert in the list: "); scanf("%d", &val); printf("Insert after: "); scanf("%d", &after); insert_after(head, val, after); printf("List after insertion: "); print_list(head); printf("Enter an ele to insert in the list: "); scanf("%d", &val); printf("Insert before: "); scanf("%d", &before); insert_before(&head, val, before); printf("List after insertion: "); print_list(head); }
出力
上記のプログラムを実行すると、次の結果が得られます-
Enter no: of elements: 4 Enter 0th element: 1 Enter 1th element: 2 Enter 2th element: 3 Enter 3th element: 4 starting list: H->4->3->2->1->...... enter front element: 5 items after insertion: H->5->4->3->2->1->...... enter last element: 0 items after insertion: H->5->4->3->2->1->0->...... Enter an ele to insert in the list: 6 Insert after: 0 List after insertion: H->5->4->3->2->1->0->6->...... Enter an ele to insert in the list: 7 Insert before: 5 List after insertion: H->7->5->4->3->2->1->0->6->......
-
リンクリストのノードをC言語で指定されたインデックスに出力します
与えられたインデックスでリンクリストのノードのデータを印刷する必要があります。配列のリンクリストとは異なり、通常はインデックスがないため、リンクリスト全体をトラバースして、特定のリストに到達したときにデータを出力する必要があります。 たとえば、リストにノード29、34、43、56、88が含まれ、インデックスの値が1、2、4である場合、出力はこれらのインデックスのノードである34、43、88になります。 例 Linked list: 29->34->43->56->88 Input: 1 2 4 Output: 34 43 88 上記のリンクリストの表現で、黄色
-
実際にC言語で反転せずに、リンクリストの反転を印刷します
タスクは、再帰関数を使用して、指定されたリンクリストの逆を印刷することです。プログラムは逆に印刷する必要がありますが、リストを逆にしないでください。つまり、ノードの順序は同じままです。 ここで、プログラムは、リストの最後のノードに格納されているNULLが調べられ、ヘッドノードのデータが出力されるまで、最初のノードのアドレスを含むヘッドポインタを次のノードに移動します。 例 Input: 29 34 43 56 Output: 56 43 34 29 まず、ノードがリストに挿入され、挿入されたノードを指すポインターが開始されます。最終リストが作成された後、一時ポインタが最初のノードポイ