C How To Program, Global Edition
C How To Program, Global Edition
8th Edition
ISBN: 9781292110974
Author: Paul Deitel, Harvey Deitel
Publisher: PEARSON
Question
Book Icon
Chapter 12, Problem 12.6E
Program Plan Intro

Program plan:

  1. Item, start variablesare used for input. There is structure listnode having data, nextPtr member variables which represents the linked list node.
  2. void insert(node **head, int value) function inserts the node in the a linked list.
  3. node *concat(node *flist, node *slist) function concat the two linked list and return the resultant linked list.
  4. void printList(node *head) function display the contents of the linked list.

Program description:

The main purpose of the program is to perform the concatenation of two linked list by implanting the concept which is same as strcat() function of string.

Expert Solution & Answer
Check Mark

Explanation of Solution

Program:

#include <stdio.h>
#include <conio.h>
#include <alloc.h>
#include <ctype.h>

//structure of node of the linked list
typedefstruct listnode
{
int data;
struct listnode *nextPtr;
} node;

//function to insert a node in a linked list
void insert(node &head,int value);
//recursive function to concate the linked list
node *concat(node *flist, node *slist);
//function to print the content of linked list
void printList(node *head);

//main starts here
void main()
{

int item;
      node *flist,*slist;
      clrscr();
//initialization of start node of linked list
      flist =NULL;
      slist =NULL;
//loop to getting input from the user for first linked list
while(1)
{
            printf("\nEnter value to insert in a First  List: 0 to End ");
            scanf("%d",&item);
//check condition to terminate while loop
if(item ==0)
break;
//insert value in a linked list
            insert(&flist, item);
}
//loop to getting input from the user for second linked list
while(1)
{
            printf("\nEnter value to insert in a Second List: 0 to End ");
            scanf("%d",&item);
//check condition to terminate while loop
if(item ==0)
break;
//insert value in a linked list
            insert(&slist, item);
}

// print the contents of linked list
      printf("\n Content of First List are as follows : ");
      printList(flist);
// print the contents of linked list
      printf("\n Content of Second List are as follows : ");
      printList(slist);
//call the function to reverse the linked list
// and store the address of first node
      flist = concat(flist, slist);

//print the contents of concated list
      printf("\n Concatenated List contents are as follows : ");
      printList(flist);
      getch();
}


//function definition to insert node in a linked list
void insert(node &head,int value)
{
      node *ptr,*tempnode;
//memory allocation for the new node
      ptr = malloc(sizeof(node));
//copy the value to the new node
      ptr->data = value;
//set node's pointer to NULL
      ptr->nextPtr =NULL;

//if the list is empty
if(*head ==NULL)
//make the first node
*head = ptr;

else
{
//copy the address of first node
            tempnode =*head;
//traverse the list using loop until it reaches
//to the last node
while(tempnode->nextPtr !=NULL)
                  tempnode = tempnode->nextPtr;
//make the new node as last node
            tempnode->nextPtr = ptr;
}


}

//function defintion to concat the list
node *concat(node *flist, node *slist)
{
      node *ptr;
//check if list is empty
if(flist ==NULL|| slist ==NULL)
{
            printf("\none of the lists is empty");
//return the node
returnNULL;
}
else
{
//store first node address
            ptr = flist;
//traverse list until last node is not encountered
while(ptr->nextPtr !=NULL)
                  ptr = ptr->nextPtr;
//store the address of first node of second list
            ptr->nextPtr = slist;
}

//return new list
return flist;
}


//function definition to display linked list contents
void printList(node *head)
{
      node *ptr;
//stores the address of first node
      ptr = head;
//traverse the list until it reaches to the NULL
while(ptr !=NULL)
{
//print the content of current node
            printf("%d ", ptr->data);
//goto the next node
            ptr = ptr->nextPtr;
}
}

Explanation:In the above code, a structure is created which represents the node of the linked list. Two starting nodes are initialized which contains the address of first node of each list. User is asked to enter the values for first linked list and linked list is created using insert() function by passing the starting pointer and value. This process is repeated to create the second linked list. printList() function is used to display the contents of both lists. Both lists are concatenated using the concat() function by passing the both list. In this function first list is traversed up to last node and then last node pointer points to the first node of second list. Starting node address is returned and stored in the pointer. Finally, concatenated list is displayed using printList() function.

Sample output:

  C How To Program, Global Edition, Chapter 12, Problem 12.6E

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
I need to develop and run a program that prompts the user to enter a positive integer n, and then calculate the value of n factorial n! = multiplication of all integers between 1 and n, and print the value n! on the screen. This is for C*.
I need to develop and run a C* program to sum up integers from 1 to 100, and print out the sum value on the screen. Can someone help please?
Given the schema below for the widgetshop, provide a schema diagram. Schema name Attributes Widget-schema Customer-schema (stocknum, manufacturer, description, weight, price, inventory) (custnum, name, address) Purchased-schema (custnum, stocknum, pdate) Requestedby-schema (stocknum, custnum) Newitem-schema (stocknum, manufacturer, description) Employee-schema (ssn, name, address, salary) You can remove the Newitem-schema (red).
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Text book image
Systems Architecture
Computer Science
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Cengage Learning
Text book image
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
Text book image
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:9781305503922
Author:Patrick M. Carey
Publisher:Cengage Learning