ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip       Ask Questions on ANYTHING, that arise in your Daily Life at     FORUM9.COM
Google
 
Categories >> Code-Snippets >> Programming-Code >> C-Code
 
 
 
Question
Program to Delete an element from a doubly linked list.
 Question Submitted By :: =-PKG-=
I also faced this Question!!     Rank Answer Posted By  
 
Answer
to delete an element.
enter the position of the element to be deleted.
-> pos.

structure of node is 

struct node
{
  int data;
  struct node *prev , *next;
}

//home is the starting pointer of hte list.
struct node * delete(struct node *home , int pos)
{
  temp = home;
  if(pos == 1)
  {
    temp = home;
    home = home -> next;
    free(temp);
  }

  temp = home;
  p = home;
  
   for(i = 0 ; i < pos ; i++)
   {
     p = p -> next;
   }

   temp = p -> next;
  temp1 = temp -> next;

  p -> next = temp1;
  temp1 -> prev = p
  
  free(temp);
}

return home;
}
 
0
Shruti
 
View All Answers
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com