Array of Stuct
Array Of Struct struct fullname { //struct untuk nama lengkap, semua tipe data di dalamnya adalah string string namadepan; string n...
Welcome to my blog ! I will share any knowledge about math.. Hope we can discuss or study together about math ! "If people do not believe that mathematics is simple, it is only because they do not realize how complicated life is." ~ John von Neumann
Array Of Struct struct fullname { //struct untuk nama lengkap, semua tipe data di dalamnya adalah string string namadepan; string n...
Single Link List Non Circular (maximum data,total data) struct node {//struct is used to define a new data type,the data type of st...
Double Link List Non Circular struct node{ int data; node *next, *prev; } *head=NULL,*tail=NULL,*baru, *bantu,...
Single Link List Circular struct node {//struct is used to define a new data type,the data type of struct is node int data;//struct...
Double Link List Circular struct simpul{ int data; simpul *next, *prev; } *awal=NULL,*akhir=NULL,*baru, *bantu, ...
Single Link List Non Circular struct node {//struct is used to define a new data type,the data type of struct is node int data;//...