C How To Program Plus Mylab Programming With Pearson Etext -- Access Card Package (8th Edition)
C How To Program Plus Mylab Programming With Pearson Etext -- Access Card Package (8th Edition)
8th Edition
ISBN: 9780134227023
Author: Paul J. 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 Plus Mylab Programming With Pearson Etext -- Access Card Package (8th 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
What are the major threats of using the internet? How do you use it? How do children use it? How canwe secure it? Provide four references with your answer. Two of the refernces can be from an article and the other two from websites.
Assume that a string of name & surname is saved in S. The alphabetical characters in S can be in lowercase and/or uppercase letters. Name and surname are assumed to be separated by a space character and the string ends with a full stop "." character. Write an assembly language program that will copy the name to NAME in lowercase and the surname to SNAME in uppercase letters. Assume that name and/or surname cannot exceed 20 characters. The program should be general and work with every possible string with name & surname. However, you can consider the data segment definition given below in your program. .DATA S DB 'Mahmoud Obaid." NAME DB 20 DUP(?) SNAME DB 20 DUP(?) Hint: Uppercase characters are ordered between 'A' (41H) and 'Z' (5AH) and lowercase characters are ordered between 'a' (61H) and 'z' (7AH) in the in the ASCII Code table. For lowercase letters, bit 5 (d5) of the ASCII code is 1 where for uppercase letters it is 0. For example, Letter 'h' Binary ASCII 01101000 68H 'H'…
What did you find most interesting or surprising about the scientist Lavoiser?
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