#include
#include
typedef struct LinkNode{
char data;
struct LinkNode *next;
} LNode, *LinkList, *NodePtr;
LinkList initLinkList(){
NodePtr tempHeader = (NodePtr)malloc(sizeof(LNode));
tempHeader->data = '\0';
tempHeader->next = NULL;
return tempHeader;
}
void printList(NodePtr paraHeader){
NodePtr p = paraHeader->next;
while (p != NULL) {
printf("%c", p->data);
p = p->next;
}// Of while
printf("\r\n");
}
void printListMemory(NodePtr paraHeader){
NodePtr p = paraHeader;
while (p != NULL) {
printf("At address %ld, data = %c, next = %ld \r\n", p, p->data, p->next);
p = p->next;
}// Of while
printf("\r\n");
}
void appendElement(NodePtr paraHeader, char paraChar){
NodePtr p, q;
q = (NodePtr)malloc(sizeof(LNode));
q->data = paraChar;
q->next = NULL;
p = paraHeader;
while (p->next != NULL) {
p = p->next;
}
p->next = q;
}
void insertElement(NodePtr paraHeader, char paraChar, int paraPosition){
NodePtr p, q;
p = paraHeader;
for (int i = 0; i < paraPosition; i ++) {
p = p->next;
if (p == NULL) {
printf("The position %d is beyond the scope of the list.", paraPosition);
return;
}
}
q = (NodePtr)malloc(sizeof(LNode));
q->data = paraChar;
printf("linking\r\n");
q->next = p->next;
p->next = q;
}
void deleteElement(NodePtr paraHeader, char paraChar){
NodePtr p, q;
p = paraHeader;
while ((p->next != NULL) && (p->next->data != paraChar)){
p = p->next;
}
if (p->next == NULL) {
printf("Cannot delete %c\r\n", paraChar);
return;
}
q = p->next;
p->next = p->next->next;
free(q);
}
void appendInsertDeleteTest(){
LinkList tempList = initLinkList();
printList(tempList);
appendElement(tempList, 'H');
appendElement(tempList, 'e');
appendElement(tempList, 'l');
appendElement(tempList, 'l');
appendElement(tempList, 'o');
appendElement(tempList, '!');
printf("After appendElement");
printList(tempList);
printListMemory(tempList);
deleteElement(tempList, 'e');
deleteElement(tempList, 'a');
deleteElement(tempList, 'o');
printf("After deleteElement");
printList(tempList);
printListMemory(tempList);
insertElement(tempList, 'o', 1);
printf("After insertElement");
printList(tempList);
printListMemory(tempList);
}
void basicAddressTest(){
LNode tempNode1, tempNode2;
tempNode1.data = 4;
tempNode1.next = NULL;
tempNode2.data = 6;
tempNode2.next = NULL;
printf("The first node: %d, %d, %d\r\n",
&tempNode1, &tempNode1.data, &tempNode1.next);
printf("The second node: %d, %d, %d\r\n",
&tempNode2, &tempNode2.data, &tempNode2.next);
tempNode1.next = &tempNode2;
}
int main(){
appendInsertDeleteTest();
return 0;
}
After appendElementHello!
At address 10097680, data = , next = 10119888
At address 10119888, data = H, next = 10119920
At address 10119920, data = e, next = 10119952
At address 10119952, data = l, next = 10119984
At address 10119984, data = l, next = 10120016
At address 10120016, data = o, next = 10120048
At address 10120048, data = !, next = 0Cannot delete a
After deleteElementHll!
At address 10097680, data = , next = 10119888
At address 10119888, data = H, next = 10119952
At address 10119952, data = l, next = 10119984
At address 10119984, data = l, next = 10120048
At address 10120048, data = !, next = 0linking
After insertElementHoll!
At address 10097680, data = , next = 10119888
At address 10119888, data = H, next = 10120016
At address 10120016, data = o, next = 10119952
At address 10119952, data = l, next = 10119984
At address 10119984, data = l, next = 10120048
At address 10120048, data = !, next = 0