Compare commits
No commits in common. "7aae05eae6d1233b784c2ec7a74c6f273cd87b9b" and "7bc6a62777f278fe8e0354e64535840f03bb1dde" have entirely different histories.
7aae05eae6
...
7bc6a62777
@ -1,8 +1,7 @@
|
|||||||
#include "stdio.h"
|
#include "stdio.h"
|
||||||
#include "stdlib.h"
|
#include "stdlib.h"
|
||||||
|
|
||||||
struct node
|
struct node {
|
||||||
{
|
|
||||||
int data;
|
int data;
|
||||||
struct node *next;
|
struct node *next;
|
||||||
};
|
};
|
||||||
@ -16,16 +15,13 @@ void remove_last();
|
|||||||
int count = 0;
|
int count = 0;
|
||||||
void display_menu();
|
void display_menu();
|
||||||
|
|
||||||
int main(void)
|
int main(void) {
|
||||||
{
|
|
||||||
printf("Welcome!\n");
|
printf("Welcome!\n");
|
||||||
|
|
||||||
int selected, data;
|
int selected, data;
|
||||||
|
|
||||||
while (1)
|
while (1) {
|
||||||
{
|
if (count == 100) {
|
||||||
if (count == 100)
|
|
||||||
{
|
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -37,23 +33,22 @@ int main(void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void display_menu()
|
void display_menu() {
|
||||||
{
|
|
||||||
|
|
||||||
printf("1. Add first element\n");
|
printf("1. Add first element\n");
|
||||||
printf("2. Add last element\n");
|
printf("2. Add last element\n");
|
||||||
printf("3. Traverse element\n");
|
printf("3. Traverse element\n");
|
||||||
printf("4. Remove first element\n");
|
printf("4. Remove first element\n");
|
||||||
printf("5. Remove last element\n");
|
printf("5. Remove last element\n");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void add_first(int element)
|
void add_first(int element) {
|
||||||
{
|
|
||||||
// init node
|
// init node
|
||||||
struct node *node;
|
struct node *node;
|
||||||
|
|
||||||
// allocate the node for linkedlist
|
// allocate the node for linkedlist
|
||||||
node = (struct node *)malloc(sizeof(struct node));
|
node = (struct node*)malloc(sizeof(struct node));
|
||||||
|
|
||||||
// add the data into node
|
// add the data into node
|
||||||
node->data = element;
|
node->data = element;
|
||||||
@ -62,8 +57,7 @@ void add_first(int element)
|
|||||||
count++;
|
count++;
|
||||||
|
|
||||||
// check the head, if null put the data into it
|
// check the head, if null put the data into it
|
||||||
if (head == NULL)
|
if (head == NULL) {
|
||||||
{
|
|
||||||
// replace the node into head
|
// replace the node into head
|
||||||
head = node;
|
head = node;
|
||||||
|
|
||||||
@ -74,117 +68,6 @@ void add_first(int element)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// put the first element of the head
|
|
||||||
// because we need the old head into the next of new head
|
|
||||||
node->next = head;
|
node->next = head;
|
||||||
|
|
||||||
// replace the head node from current node
|
|
||||||
head = node;
|
head = node;
|
||||||
}
|
|
||||||
|
|
||||||
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);
|
|
||||||
}
|
|
||||||
|
|
||||||
void remove_first()
|
|
||||||
{
|
|
||||||
struct node *node;
|
|
||||||
int data;
|
|
||||||
|
|
||||||
if (head == NULL)
|
|
||||||
{
|
|
||||||
printf("No elements found!\n");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
data = head->data;
|
|
||||||
node = head->next;
|
|
||||||
free(head);
|
|
||||||
head = node;
|
|
||||||
count--;
|
|
||||||
|
|
||||||
printf("Element %d has been removed from first!\n", data);
|
|
||||||
}
|
|
||||||
|
|
||||||
void remove_last()
|
|
||||||
{
|
|
||||||
struct node *node, *temp;
|
|
||||||
int data;
|
|
||||||
|
|
||||||
if (head == NULL)
|
|
||||||
{
|
|
||||||
printf("No elements found!\n");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
count--;
|
|
||||||
|
|
||||||
if (head->next == NULL)
|
|
||||||
{
|
|
||||||
data = head->data;
|
|
||||||
free(head);
|
|
||||||
head = NULL;
|
|
||||||
printf("Element %d has been removed from last!\n");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
node = head;
|
|
||||||
|
|
||||||
while (node->next != NULL)
|
|
||||||
{
|
|
||||||
temp = node;
|
|
||||||
node = node->next;
|
|
||||||
}
|
|
||||||
|
|
||||||
data = node->data;
|
|
||||||
temp->next = NULL;
|
|
||||||
free(node);
|
|
||||||
|
|
||||||
printf("Element %d has been removed from last!\n");
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user