-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtester.c
39 lines (34 loc) · 1.18 KB
/
tester.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
//
// Created by Seb on 02-Jun-2022.
//
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "DoublyLinkedList.h"
#define CMD_MAX_SIZE 128
int main(){
DoublyLinkedList* linkedList = lListInit();
char line [CMD_MAX_SIZE];
while (1){
if (fgets(line, CMD_MAX_SIZE, stdin) == NULL){
break;
}
char cmd = *strtok(line, " ");
if (cmd == 'a') { // add
int data = strtol(strtok(NULL, " "),NULL, 10);
int index = strtol(strtok(NULL, " "), NULL,10);
insert(linkedList, data, index);
} else if (cmd == 'r') { // remove
int index = strtol(strtok(NULL, " "),NULL, 10);
removeIdx(linkedList,index);
} else if (cmd == 'f'){ // find
int data = strtol(strtok(NULL, " "), NULL,10);
int idx = find(linkedList, data);
printf("f d:%d i:%d\n", data, idx);
} else if (cmd == 'q'){
break;
}
}
printList(linkedList);
destroy(linkedList);
}