-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab_assignment_5.c
86 lines (84 loc) · 2.11 KB
/
lab_assignment_5.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include <stdio.h>
#include <stdlib.h>
typedef struct node {
char letter;
struct node* next;
} node;
// Returns number of nodes in the linkedList.
int length(node* head){
int count = 0;
node* current = head;
while (current != NULL) {
count++;
current = current->next;
}
return count;
}
// parses the string in the linkedList
// if the linked list is head -> |a|->|b|->|c|
// then toCString function wil return "abc"
char* toCString(node* head){
int len = length(head);
char* str = (char*)malloc((len + 1) * sizeof(char));
int i = 0;
node* current = head;
while (current != NULL) {
str[i] = current->letter;
i++;
current = current->next;
}
str[i] = '\0';
return str;
}
// inserts character to the linkedlist
// f the linked list is head -> |a|->|b|->|c|
// then insertChar(&head, 'x') will update the linked list as foolows:
// head -> |a|->|b|->|c|->|x|
void insertChar(node** pHead, char c){
node* newNode = (node*)malloc(sizeof(node));
newNode->letter = c;
newNode->next = NULL;
if (*pHead == NULL) {
*pHead = newNode;
} else {
node* current = *pHead;
while (current->next != NULL) {
current = current->next;
}
current->next = newNode;
}
}
// deletes all nodes in the linkedList.
void deleteList(node** pHead){
node* current = *pHead;
while (current != NULL) {
node* next = current->next;
free(current);
current = next;
}
*pHead = NULL;
}
int main(void){
int i, strLen, numInputs;
node* head = NULL;
char* str;
char c;
FILE* inFile = fopen("input.txt","r");
fscanf(inFile, " %d\n", &numInputs);
while (numInputs-- > 0){
fscanf(inFile, " %d\n", &strLen);
for (i = 0; i < strLen; i++){
fscanf(inFile," %c", &c);
insertChar(&head, c);
}
str = toCString(head);
printf("String is : %s\n", str);
free(str);
deleteList(&head);
if (head != NULL){
printf("deleteList is not correct!");
break;
}
}
fclose(inFile);
}