Question

In: Computer Science

In this assignment you will use pointers and structures to create Single and double link list....

In this assignment you will use pointers and structures to create Single and double link list. Write a menu driven program with the menu options:
1. Insert in Linked List
      1. Insert in Single linked list
             1. Insert at front(head)
             2. Insert at Index
             3. Insert at end(tail)
      2. Insert in double linked list
             1. Insert at front(head)
             2. Insert at Index
             3. Insert at end(tail)
2. Print
      1. Print linked list
      2. Print double linked list in reverse order after           calculating the cube of each element.
3. Delete in both linked list
       1. deletion at front(head)
       2. deletion at Index
       3. deletion at end(tail)
4. Return maximum data from single/double linked list
5. Count the number of nodes in linked list
6. Find the sum of all node
7. Check if elements stored in Linked list make a Palindrome. (like 1221, 3333, 2442)
8. Return Minimum data from single/ double linked list
9. Exit

Note ::: Program should be implemented in C++ with, pointers and functions   Each menu option should be implemented in separate function. Try to terminate insertion in linked list according to user’s choice.

Solutions

Expert Solution

#include <iostream>

using namespace std;
/*----Function Prototypes-----*/
struct node
{
int info;
struct node *next;
};

struct Dnode
{
struct Dnode *prev;
int n;
struct Dnode *next;
}*h,*temp,*temp1,*temp2,*temp4;

void insert_first();
void insert_last();
void insert_position();
void traversebeg();

void display();
void insert_begin();
void insert_end();
void insert_index();
void delete_begin();
void delete_end();
void delete_index();
int getCount(struct node*);
int smallestElement(struct node*);
int largestElement(struct node*);
int sumOfNodes(struct node* ) ;
void traverseend(int);
int palin_check(struct node*,int);
/*-----------------------------*/
int count=0;
struct node *start=NULL;
int main() //main() starts
{
int choice;
int count;
int max,min;
int Ichoice;
int pchoice;
int Dchoice;
int insertion_type;
int dchoice;
int result;
h = NULL;
temp = temp1 = NULL;
  
while(1){

cout<<"\n MENU \n";
cout<<"---------------------------------------";
cout<<"\n 1.Insert ";
cout<<"\n 2.Display ";
cout<<"\n 3.Delete ";
cout<<"\n 4.Maximum number int he list ";
cout<<"\n 5. Count the number of nodes in linked list ";
cout<<"\n 6.sum of the nodes in the list";
cout<<"\n 7.Check if elements stored in Linked list make a Palindrome";
cout<<"\n 8.minimum number in the list ";
cout<<"\n 9.Exit ";
cout<<"\n--------------------------------------";
cout<<"\nEnter your choice:\t";
cin>>choice;
switch(choice)
{
case 1:
cout<<"\n 1.Insertion in Single Linked list";
cout<<"\n 2.Insertion in Double linked list";
cout<<"\nEnter your choice:\t";
cin>>insertion_type;
switch(insertion_type)
{
case 1:
cout<<"\n 1.Insert at the beginning \n";
cout<<"\n 2.Insert at the end \n";
cout<<"\n 3.Insert at specified position \n";
cout<<"Enter your choice:\t";
cin>>Ichoice;
switch(Ichoice){

case 1:
insert_begin();
break;
case 2:
insert_end();
break;
case 3:
insert_index();
break;
}break;
case 2:
cout<<"\n 1.Insert at the beginning \n";
cout<<"\n 2.Insert at the end \n";
cout<<"\n 3.Insert at specified position \n";
cout<<"Enter your choice:\t";
cin>>Ichoice;
switch(Ichoice){

case 1:
insert_first();
break;
case 2:
insert_last();
break;
case 3:
insert_position();
break;
}
}
  

break;
case 2:
  
cout<<"\n 1. disply elements in the single list";
cout<<"\n 2. Print double linked list in reverse order after calculating the cube of each element.";
cout<<"\nEnter your choice:\t";
cin>>pchoice;
switch(pchoice){
case 1:
display();
break;
case 2:
temp2 = h;
if (temp2 == NULL)
cout<<"\n Error : List empty to display ";
else
{
cout<<"\n Reverse order of linked list is : ";
traverseend(temp2->n);
}
  
}break;

  
case 3:
cout<<"\n 1.Delete from beginning \n";
cout<<"\n 2.Delete from the end \n";
cout<<"\n 3.Delete from specified position \n";
cout<<"Enter your choice:\t";
cin>>Dchoice;
switch(Dchoice){
case 1:
delete_begin();
break;
case 2:
delete_end();
break;
case 3:
delete_index();
break;
}break;
  
  
case 4:
max=largestElement(start);
cout<<"Maximum number in the list is="<<max;
break;

case 5:
count=getCount(start);
cout<<"count ="<<count;
break;
  
case 6:
sumOfNodes(start);
break;
  
case 7:
count=getCount(start);
result = palin_check(start, count);
if (result == 1)
{
printf("The linked list is a palindrome.\n");
}
else
{
printf("The linked list is not a palindrome.\n");
}
  
case 8:
  
min=smallestElement(start);
cout<<"Minimun number in the list id="<<min;
break;
case 9:
exit(0);
break;

default:
cout<<"\n Wrong Choice:\n";
break;
}//end of switch()
}
return 0;
}//end of main()
void create()
{
struct node *temp,*ptr;
temp=(struct node *)malloc(sizeof(struct node));
if(temp==NULL)
{
printf("\nOut of Memory Space:\n");
exit(0);
}
printf("\nEnter the data value for the node:\t");
scanf("%d",&temp->info);
temp->next=NULL;
if(start==NULL)
{
start=temp;
}
else
{
ptr=start;
while(ptr->next!=NULL)
{
ptr=ptr->next;
}
ptr->next=temp;
}
}//end of create()
void display()
{
struct node *ptr;
if(start==NULL)
{
printf("\nList is empty:\n");
return;
}
else
{
ptr=start;
printf("\nThe List elements are:\n");
while(ptr!=NULL)
{
printf("%d\t",ptr->info );
ptr=ptr->next ;
}//end of while
}//end of else
}//end of display()
void insert_begin()
{
struct node *temp;
temp=(struct node *)malloc(sizeof(struct node));
if(temp==NULL)
{
printf("\nOut of Memory Space:\n");
return;
}
printf("\nEnter the data value for the node:\t" );
scanf("%d",&temp->info);
temp->next =NULL;
if(start==NULL)
{
start=temp;
}
else
{
temp->next=start;
start=temp;
}
}//end of insert_begin()
void insert_end()
{
struct node *temp,*ptr;
temp=(struct node *)malloc(sizeof(struct node));
if(temp==NULL)
{
printf("\nOut of Memory Space:\n");
return;
}
printf("\nEnter the data value for the node:\t" );
scanf("%d",&temp->info );
temp->next =NULL;
if(start==NULL)
{
start=temp;
}
else
{
ptr=start;
while(ptr->next !=NULL)
{
ptr=ptr->next ;
}
ptr->next =temp;
}
}//end of insert_end
void insert_index()
{
struct node *ptr,*temp;
int i,pos;
temp=(struct node *)malloc(sizeof(struct node));
if(temp==NULL)
{
printf("\nOut of Memory Space:\n");
return;
}
printf("\nEnter the position for the new node to be inserted:\t");
scanf("%d",&pos);
printf("\nEnter the data value of the node:\t");
scanf("%d",&temp->info) ;

temp->next=NULL;
if(pos==0)
{
temp->next=start;
start=temp;
}
else
{
for(i=0,ptr=start;i<pos-1;i++)
{
ptr=ptr->next;
if(ptr==NULL)
{
printf("\nPosition not found:[Handle with care]\n");
return;
}
}
temp->next =ptr->next ;
ptr->next=temp;
}//end of else
}//end of insert_pos
void delete_begin()
{
struct node *ptr;
if(ptr==NULL)
{
printf("\nList is Empty:\n");
return;
}
else
{
ptr=start;
start=start->next ;
printf("\nThe deleted element is :%d\t",ptr->info);
free(ptr);
}
}//end of delete_begin()
void delete_end()
{
struct node *temp,*ptr;
if(start==NULL)
{
printf("\nList is Empty:");
exit(0);
}
else if(start->next ==NULL)
{
ptr=start;
start=NULL;
printf("\nThe deleted element is:%d\t",ptr->info);
free(ptr);
}
else
{
ptr=start;
while(ptr->next!=NULL)
{
temp=ptr;
ptr=ptr->next;
}
temp->next=NULL;
printf("\nThe deleted element is:%d\t",ptr->info);
free(ptr);
}
}//end of delete_begin()
void delete_index()
{
int i,pos;
struct node *temp,*ptr;
if(start==NULL)
{
printf("\nThe List is Empty:\n");
exit(0);
}
else
{
printf("\nEnter the position of the node to be deleted:\t");
scanf("%d",&pos);
if(pos==0)
{
ptr=start;
start=start->next ;
printf("\nThe deleted element is:%d\t",ptr->info );
free(ptr);
}
else
{
ptr=start;
for(i=0;i<pos;i++)
{
temp=ptr;
ptr=ptr->next ;
if(ptr==NULL)
{
printf("\nPosition not Found:\n");
return;
}
}
temp->next =ptr->next ;
printf("\nThe deleted element is:%d\t",ptr->info );
free(ptr);
}
}//end of else
}//end of delete_pos()


/* TO create an empty node */
void createDouble()
{
int data;

temp =(struct Dnode *)malloc(1*sizeof(struct Dnode));
temp->prev = NULL;
temp->next = NULL;
printf("\n Enter value to node : ");
scanf("%d", &data);
temp->n = data;
count++;
}

/* TO insert at beginning */
void insert_first()
{
if (h == NULL)
{
createDouble();
h = temp;
temp1 = h;
}
else
{
createDouble();
temp->next = h;
h->prev = temp;
h = temp;
}
}

/* To insert at end */
void insert_last()
{
if (h == NULL)
{
createDouble();
h = temp;
temp1 = h;
}
else
{
createDouble();
temp1->next = temp;
temp->prev = temp1;
temp1 = temp;
}
}

/* To insert at any position */
void insert_position()
{
int pos, i = 2;

printf("\n Enter position to be inserted : ");
scanf("%d", &pos);
temp2 = h;

if ((pos < 1) || (pos >= count + 1))
{
printf("\n Position out of range to insert");
return;
}
if ((h == NULL) && (pos != 1))
{
printf("\n Empty list cannot insert other than 1st position");
return;
}
if ((h == NULL) && (pos == 1))
{
createDouble();
h = temp;
temp1 = h;
return;
}
else
{
while (i < pos)
{
temp2 = temp2->next;
i++;
}
createDouble();
temp->prev = temp2;
temp->next = temp2->next;
temp2->next->prev = temp;
temp2->next = temp;
}
}
//display form end
void traverseend(int i)
{
if (temp2 != NULL)
{
i = temp2->n;
temp2 = temp2->next;
traverseend(i);
cout<< i*i*i;
}
}
/* Counts no. of nodes in linked list */
int getCount(struct node* start)
{
int count = 0; // Initialize count
struct node* current = start; // Initialize current
while (current != NULL)
{
count++;
current = current->next;
}
return count;
}
int largestElement(struct node* head)
{

int max = -99999999;
  
// Check loop while head not equal to NULL
while (head != NULL) {
  
if (max < head->info)
max = head->info;
head = head->next;
}
return max;
}
  
// Function that returns smallest element

int smallestElement(struct node* head)
{

int min = 999999;
  
// Check loop while head not equal to NULL
while (head != NULL) {
  

if (min > head->info)
min = head->info;
  
head = head->next;
}
return min;
} //minimum numbe in the list

int sumOfNodes(struct node* head)
{
// if head = NULL
if (!head)
return -1;
  
  
int sum = 0;
  
  
struct node* current = head; // Initialize current
while (current != NULL) {

sum += current->info;
current = current->next;
}
  
// calculate average

  
return sum;
}//sum of all nodes in list
//palindrom or not checking
int palin_check (struct node *p, int count)
{
int i = 0, j;
struct node *front, *rear;

while (i != count / 2)
{
front = rear = p;
for (j = 0; j < i; j++)
{
front = front->next;
}
for (j = 0; j < count - (i + 1); j++)
{
rear = rear->next;
}
if (front->info != rear->info)
{
return 0;
}
else
{
i++;
}
}

return 1;
}


Related Solutions

Assignment: The Ordered List In this assignment, you will create an ordered list of movies. The...
Assignment: The Ordered List In this assignment, you will create an ordered list of movies. The list will always be maintained in sorted order (ascending order, by movie title) by assuring that all new movies are inserted in the correct location in the list. Create a new project to hold your implementation of an ordered singly-linked list. You will need a main.cppto use as a test driver, as well as header and implementation files as described below. Movie To represent...
In this assignment you will use the baseball salary data found in the Data Sets link...
In this assignment you will use the baseball salary data found in the Data Sets link on the menu to your left. Under R Instructions, see the document "Some R commands for the baseball salary data" in order to learn how to (a) read the data into R, and (b) use the command lm when you have a large number of independent variables. Please do the following: (1) Fit a linear regression model with salary as the response and the...
USE PYTHON Create a single list that contains the following collection of data in the order...
USE PYTHON Create a single list that contains the following collection of data in the order provided: [1121, "Jackie Grainger", 22.22, 1122, "Jignesh Thrakkar", 25.25, 1127, "Dion Green", 28.75, False, 24.32, 1132, "Jacob Gerber", "Sarah Sanderson", 23.45, 1137, True, "Brandon Heck", 1138, 25.84, True, 1152, "David Toma", 22.65, 23.75, 1157, "Charles King", False, "Jackie Grainger", 1121, 22.22, False, 22.65, 1152, "David Toma"] The data above represents employee information exported from an Excel spreadsheet. Whomever typed the data in originally didn't...
in this assignment you will create and use a database to find meanings and synonyms for...
in this assignment you will create and use a database to find meanings and synonyms for given phrases. To do so you will use tables of synsets -- sets of one or more synonyms (specific phrases) that share the same meaning. Your program should: Display a message stating its goal Create a database file using SQLite using your name (i.e. use your name as a file name - for example, my database will be named "nimdvir") In your database, create...
Exercise 2: Write a program in Java to manipulate a Double Linked List: 1. Create Double...
Exercise 2: Write a program in Java to manipulate a Double Linked List: 1. Create Double Linked List 2. Display the list 3. Count the number of nodes 4. Insert a new node at the beginning of a Double Linked List. 5. Insert a new node at the end of a DoubleLinked List 6. Insert a new node after the value 5 of Double Linked List 7. Delete the node with value 6. 8. Search an existing element in a...
For this assignment you need to create a ToDo list using Javascript, along with HTML and...
For this assignment you need to create a ToDo list using Javascript, along with HTML and CSS. Begin by creating a HTML page called todo.html. Then create a Javascript file called todo.js and link it in to the HTML page using a script tag. All Javascript for the assignment must be in the separate file. (For CSS, feel free to include styles in a style block at the top of the HTML page, or to link in CSS from a...
For this assignment you need to create a ToDo list using Javascript, along with HTML and...
For this assignment you need to create a ToDo list using Javascript, along with HTML and CSS. Begin by creating a HTML page called todo.html. Then create a Javascript file called todo.js and link it in to the HTML page using a script tag. All Javascript for the assignment must be in the separate file. (For CSS, feel free to include styles in a style block at the top of the HTML page, or to link in CSS from a...
Write a program where you- 1. Create a class to implement "Double Linked List" of integers....
Write a program where you- 1. Create a class to implement "Double Linked List" of integers. (10) 2. Create the list and print the list in forward and reverse directions. (10)
List the sequence of structures that a single amino acid (initially in a protein molecule that...
List the sequence of structures that a single amino acid (initially in a protein molecule that you eat) goes through from the moment it passes your lips to when it ends up in a hepatocyte. Then explain what (if any) chemicals relevant to digestive physiology it is exposed to at each step and what happens to the protein and eventually protein fragments each step of the way.
Assignment: Create data file consisting of integer, double or String values. Create unique Java application to...
Assignment: Create data file consisting of integer, double or String values. Create unique Java application to read all data from the file echoing the data to standard output. After all data has been read, display how many data were read. For example, if 10 integers were read, the application should display all 10 integers and at the end of the output, print "10 data values were read" My issue is displaying how many integers were read and how many strings...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT