COP 3502 Section 4 Lab Assignment # 4 An alternate method of storing a string is to store each letter of the string in a single node of a linked list, with the first node of the list storing the first letter of the string. Using this method of storage, no null character is needed since the next field of the node storing the last letter of the string would simply be a null pointer. In this program, you are going to complete the missing below functions in the attached C-file. This program reads the input from the attached input.txt file in the following format: 3 6 abcdef 4 1234 2 cm When the chars "abcdef" are read, your program will construct a linked list as follows: head a b - с d e f You are going to implement the following functions: int length (node* head) char* toCString(node* head) void insertChar (node** pHead, char c) void deletelist (node** pHead) Once you are done, please upload the C-file. We are going to compile and run your C-file to grade.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section7.5: Case Studies
Problem 3E
icon
Related questions
Question

In C programming ONLY!

PLEASE FOLLOW THE INSTRUCTIONS

#include <stdio.h>
#include <stdlib.h>
typedef struct node {
char letter;
struct node* next;
} node;
// Returns number of nodes in the linked List.
int length(node* head)
}
// parses the string in the linked List
// if the linked list is head -> |a|->|b|-> |C|
then tocString function wil return "abc"
char* toCString(node* head)
}
// inserts character to the linkedlist
// f the linked list is head -> |a|-| b|->|c|
// then insert Char (&head, 'x') will update the linked list as foolows:
// head-> |a|->|b|->|c|-> |x|
void insertChar (node** pHead, char c)
}
// deletes all nodes in the linked List.
void deleteList (node** pHead)
}
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++)
{
}
str= toCString (head);
printf("String is: %s\n", str);
fscanf(inFile," %c", &c);
insertChar (&head, c);
free (str);
delete List (&head);
if (head != NULL)
printf("deleteList is not correct!");
break;
fclose(inFile);
Transcribed Image Text:#include <stdio.h> #include <stdlib.h> typedef struct node { char letter; struct node* next; } node; // Returns number of nodes in the linked List. int length(node* head) } // parses the string in the linked List // if the linked list is head -> |a|->|b|-> |C| then tocString function wil return "abc" char* toCString(node* head) } // inserts character to the linkedlist // f the linked list is head -> |a|-| b|->|c| // then insert Char (&head, 'x') will update the linked list as foolows: // head-> |a|->|b|->|c|-> |x| void insertChar (node** pHead, char c) } // deletes all nodes in the linked List. void deleteList (node** pHead) } 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++) { } str= toCString (head); printf("String is: %s\n", str); fscanf(inFile," %c", &c); insertChar (&head, c); free (str); delete List (&head); if (head != NULL) printf("deleteList is not correct!"); break; fclose(inFile);
COP 3502 Section 4
Lab Assignment # 4
An alternate method of storing a string is to store each letter of the string in a single node of a linked list,
with the first node of the list storing the first letter of the string. Using this method of storage, no null
character is needed since the next field of the node storing the last letter of the string would simply be a
null pointer.
In this program, you are going to complete the missing below functions in the attached C-file.
This program reads the input from the attached input.txt file in the following format:
3
6
abcdef
4
1234
2
cm
When the chars "abcdef" are read, your program will construct a linked list as follows:
head
a
b
+
с
d
e
f
You are going to implement the following functions:
int length (node* head)
char* toCString(node* head)
void insertChar (node** pHead, char c)
void deletelist (node** pHead)
Once you are done, please upload the C-file. We are going to compile and run your C-file to grade.
Transcribed Image Text:COP 3502 Section 4 Lab Assignment # 4 An alternate method of storing a string is to store each letter of the string in a single node of a linked list, with the first node of the list storing the first letter of the string. Using this method of storage, no null character is needed since the next field of the node storing the last letter of the string would simply be a null pointer. In this program, you are going to complete the missing below functions in the attached C-file. This program reads the input from the attached input.txt file in the following format: 3 6 abcdef 4 1234 2 cm When the chars "abcdef" are read, your program will construct a linked list as follows: head a b + с d e f You are going to implement the following functions: int length (node* head) char* toCString(node* head) void insertChar (node** pHead, char c) void deletelist (node** pHead) Once you are done, please upload the C-file. We are going to compile and run your C-file to grade.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Linked List Representation
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning