2020-08-01 20:32:55 +07:00
|
|
|
#include "stdio.h"
|
|
|
|
#include "stdlib.h"
|
|
|
|
|
|
|
|
struct node {
|
|
|
|
int data;
|
|
|
|
struct node *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct node *head = NULL;
|
|
|
|
void add_first(int);
|
|
|
|
void add_last(int);
|
|
|
|
void traverse();
|
|
|
|
void remove_first();
|
|
|
|
void remove_last();
|
|
|
|
int count = 0;
|
|
|
|
void display_menu();
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
printf("Welcome!\n");
|
|
|
|
|
|
|
|
int selected, data;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
if (count == 100) {
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
// show menu
|
|
|
|
display_menu();
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("\nGoodbye!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void display_menu() {
|
|
|
|
|
|
|
|
printf("1. Add first element\n");
|
|
|
|
printf("2. Add last element\n");
|
|
|
|
printf("3. Traverse element\n");
|
|
|
|
printf("4. Remove first element\n");
|
|
|
|
printf("5. Remove last element\n");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void add_first(int element) {
|
|
|
|
// init node
|
|
|
|
struct node *node;
|
|
|
|
|
|
|
|
// allocate the node for linkedlist
|
|
|
|
node = (struct node*)malloc(sizeof(struct node));
|
|
|
|
|
|
|
|
// add the data into node
|
|
|
|
node->data = element;
|
|
|
|
|
|
|
|
// count the nodes, that added into data
|
|
|
|
count++;
|
|
|
|
|
|
|
|
// check the head, if null put the data into it
|
|
|
|
if (head == NULL) {
|
|
|
|
// replace the node into head
|
|
|
|
head = node;
|
|
|
|
|
|
|
|
// set the next of head into null
|
|
|
|
head->next = NULL;
|
|
|
|
|
|
|
|
// return or end this process
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-08-01 20:48:36 +07:00
|
|
|
// put the first element of the head
|
|
|
|
// because we need the old head into the next of new head
|
2020-08-01 20:32:55 +07:00
|
|
|
node->next = head;
|
2020-08-01 20:48:36 +07:00
|
|
|
|
|
|
|
// replace the head node from current node
|
2020-08-01 20:32:55 +07:00
|
|
|
head = node;
|
2020-08-01 20:48:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
void add_last(int element) {
|
|
|
|
struct node *node, *temp;
|
|
|
|
|
|
|
|
node = (struct node*)malloc(sizeof (struct node));
|
|
|
|
node->data = element;
|
|
|
|
count++;
|
|
|
|
|
|
|
|
if (head == NULL) {
|
|
|
|
head = node;
|
|
|
|
head->next = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// store current as tempo
|
|
|
|
temp = node;
|
|
|
|
|
|
|
|
while (temp->next != NULL) {
|
|
|
|
temp = temp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
temp->next = node;
|
|
|
|
node->next = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void traverse() {
|
|
|
|
struct node *node;
|
|
|
|
|
|
|
|
node = head;
|
|
|
|
|
|
|
|
if (node == NULL) {
|
|
|
|
printf("Linked list is empty!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Total elements count: %d in linked list.\n", count);
|
|
|
|
|
|
|
|
while (node->next != NULL) {
|
|
|
|
printf("%d\n", node->data);
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("%d\n", node->data);
|
2020-08-01 20:32:55 +07:00
|
|
|
}
|