-->
g2QFCKwavghUp2yzjKrIFwEeG13RASCerFTCMH35

Single Linked List LIFO

LIFO Singly-Linked List.Program berikut membentuk singly-linked list dengan penambahan simpul di awal list. Hal ini menyebabkan linked list yang terbentuk bersifat last-in-first-out (LIFO), simpul yang terakhir ditambahkan menjadi simpul yang pertama diakses.




#include 'stdio.h'
#include 'malloc.h'
Struct tnode {
Char nama [16];
Int nilai;
Struct tnode *next;
};

Void cetaklist (struct tnode *list) {
}

Void main () {
Struct tnode *head, *node;
Int i;

Head = NULL; //baris 22
For (i=0; i<3 font="" i="">
Node = (struct tnode *) malloc (sizeof(struct tnode)); //baris 24
Fflush(stdin); //baris 25
Printf(“nama?”); gets(node -> nama); //baris 26
Printf(“nilai?”); scanf(“%d”,&node -> nilai); //baris 27
Node -> next = head; //baris 28
Head = node; //baris 29
}
Cetak list(head);
Free (head);
}

Sumbe r:sukron-moh.blogspot.co.id
Related Posts

Related Posts

Post a Comment