-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlinkedlist.c
67 lines (57 loc) · 1.47 KB
/
linkedlist.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
67
/*
* linkedlist.c
*
* Created by Yigit Colakoglu on 07/06/2021.
* Copyright yigit@yigitcolakoglu.com. 2021. All rights reserved.
*/
#include "linkedlist.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#define RANDLEN 6
LinkedList *linkedlistalloc(void){
return (LinkedList *) malloc(sizeof(LinkedList));
}
int linkedlistfind(LinkedList *p, char *str) {
int count = 0;
while(p != NULL){
if(!strcmp(p->data, str))
return count;
count++;
p = p->next;
}
return -1;
}
LinkedList *linkedlistadd(LinkedList *p, char *data){
if(p == NULL){
p = linkedlistalloc();
p->next = NULL;
p->data = data;
}else
p->next = linkedlistadd(p->next, data);
return p;
}
char rstr[RANDLEN+1];
char *randstr(){
char charset[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
int n = RANDLEN;
while((--n) > -1){
size_t index = (double) rand()/RAND_MAX * (sizeof charset - 1);
rstr[n] = charset[index];
}
return rstr;
}
void linkedlistprint(LinkedList *p, FILE *out, char* payload){
int random = 0;
if(!payload){
random = 1;
payload = randstr();
}
if(p != NULL){
(p->data == NULL) ? fprintf(out, "NULL=NULL") : fprintf(out, "%s=%s", p->data, payload);
(p->next == NULL) ? : fprintf(out, "%c",'&');
if(random)
payload = NULL;
linkedlistprint(p->next, out, payload);
}
}