answersLogoWhite

0


Best Answer

# include < stdio.h >

# include < stdlib.h >

struct list

{

char info[20];

struct list *next;

struct list *prev;

};

struct list *new1,*node;

void create(struct list *s,struct list *e)

{

char ch;

node=s;

printf("\nWant to create a node(y/n):");

ch=getche();

while (ch != 'n')

{

node->next = (struct list *) malloc(sizeof(struct list));

node->next->prev= node;

node = node->next;

printf("\n Enter the string value:- ");

gets(node->info);

node->next = e;

e->prev=node;

printf("\n Enter choice--'n' for break: ");

ch = getche();

}

}

void displayL (struct list *s,struct list *e)

{

node = s->next;

while (node!=e)

{

printf(" 0x%x--%s", node,node->info);

node = node->next;

}

printf("\n");

}

void displayR (struct list *e,struct list *s)

{

node = e->prev;

while (node!=s)

{

printf(" 0x%x--%s", node,node->info);

node = node->prev;

}

printf("\n");

}

void insertA(struct list *s)

{

struct list *new1;

int c=1,count;

printf("\nEnter the location:");

scanf("%d",&count);

fflush(stdin);

new1 = (struct list *) malloc(sizeof(struct list));

printf("\nEnter the new value:");

gets(new1->info);

node=s->next;

while(node)

{

if(c==count)

break;

node=node->next;

c++;

}

node->prev->next=new1;

new1->prev=node->prev;

new1->next=node;

node->prev=new1;

}

void main()

{

struct list *start,*end;

clrscr();

start=(struct list *) malloc(sizeof(struct list));

end=(struct list *) malloc(sizeof(struct list));

create(start,end);

printf("\n Created list is as follows(L ->R)\n");

displayL(start,end);

printf("\n Created list displayed from R->L\n");

displayR(end,start);

printf("\nInserting a new location at user specified location\n");

insertA(start);

printf("\n now the listfrom L ->R\n");

displayL(start,end);

printf("\n list from R to L after insertion\n");

displayR(end,start);

getch();

}

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Insert a node into a doubly linked list at nth position where n is user defined in data structure in c source code?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you insert a node at any place in linklist without traversing it?

Yes, with limitations... If you have the address of a node in the linklist, you can insert a node after that node. If you need to insert the node before that node, you need to traverse the list, unless the linklist is a doubly-linkedlist


Convert single linked list to double linked list?

You copy a singly linked list into a doubly linked list by iterating over the singly linked list and, for each element, calling the doubly linked list insert function.


A sentence for the word doubly?

Use the word 'doubly' in a sentence:All these questions are hard, but this one was doubly hard.


Why you use doubly link list?

In a doubly linked list, you can iterate backwards as easily as forwards, as each element contains links to both the prior and the following element. You can also insert or delete an element without needing to iterate and remember the prior element's link. This comes at a cost. You are adding storage to each element for the second link, and you are adding processing overhead to the insert and delete operation. You have to determine the tradeoff.


What is meant by doubly linked list?

In C programming, a double linked-list refers to a linked data structure that contains a set of links that have been linked sequentially.


Does the Lewis structure SO2 have resonance structure?

Sulfur dioxide has three resonance structures. A singly bonded oxygen would have 3 unshared electron pairs while a doubly bonded oxygen would have 2. The sulfur has one pair.


What does evenly and doubly even mean?

A number is even if it is divisible by 2. It is doubly even if it is divisible by 4.


What operation is supported in constant time by the doubly linked list but not by the singly linked list?

examples:- delete this node (identified by a pointer)- insert a new node before this node- replace this node with another node


What are the release dates for A Doubly Desired Orphan - 1911?

A Doubly Desired Orphan - 1911 was released on: USA: 29 December 1911


In which situation doubly reinforced beams used?

when our demand is more than capacity then designer prefers to choose doubly reinforced beam .for example your maximum moment is greater than nominal momentthen doubly reinforced beam is used.


Does each node in a doubly linked list contain a link to the previous as well as the next node?

Yes, each node in a doubly linked list contain a link to the previous as well as the next node. That is the definition of the doubly linked list.


What is the difference between doubly linked list and circular linked list?

A doubly linked list allows traversal in both directions (forward and backward) by having each node point to both its next and previous nodes. A circular linked list is a type of linked list where the last node points back to the first node, forming a circular structure. This allows continuous traversal through the elements without a definitive end.