-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGenericLinkedList.c
66 lines (56 loc) · 1.31 KB
/
GenericLinkedList.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
struct llist{
void* data;
struct llist* next;
};
struct llist* head=NULL;
struct llist* last=NULL;
void add_node(struct llist** prev_node,void* node_data,int data_size){
struct llist* new_node=(struct llist*)malloc(sizeof(struct llist));
new_node->next=NULL;
new_node->data=malloc(data_size);
memcpy(new_node->data,node_data,data_size);
(*(prev_node))->next=new_node;
last=new_node;
}
void init_node(void* node_data,int data_size){
head=(struct llist*)malloc(sizeof(struct llist));
last=(struct llist*)malloc(sizeof(struct llist));
head->next=NULL;
head->data=malloc(data_size);
memcpy(head->data,node_data,data_size);
last=head;
}
void print_list(struct llist* head_node,void (*func)(void*)){
struct llist* node=head_node;
while(node!=NULL){
(*func)(node->data);
node=node->next;
}
}
void print_int(void *num){
printf("%d",*((int*)num));
}
void print_str(void* str){
printf("%s",(char*)str);
}
void print_float(void *flt){
printf("%f",*((float*)flt));
}
void print_char(void *chr){
printf("%c",*((char*)chr));
}
void main(){
// use appropriate datatype
int array[5]={5,3,6,1,5};
for(int i=0;i<5;i++){
if(i==0){
init_node(&array[0],sizeof(array[0]));
}
else
add_node(&last,&array[i],sizeof(array[i]));
}
print_list(head,print_int);
}