Xpode.com        Click here to Print this article.

PROGRAM TO SEARCH LINEAR LINKED LIST

/**************************************/
/*PROGRAM TO SEARCH LINEAR LINKED LIST*/
/**************************************/

#include < stdio.h>
#include < conio.h>
#include < malloc.h>
#include < process.h>
#include < ctype.h>

struct linear_list
{
    int info;
    struct linear_list *next;
}*start,*newnode,*ptr;

void main()
{
    int item,loc;
int i;
    char ch;
    clrscr();
    newnode=(struct linear_list*)malloc(sizeof(struct linear_list));
    start=newnode;
    do
    {
        printf("\nEnter data: ");
        scanf("%d",&item);
        newnode->info=item;
        printf("\nDo you want to create another node:(y/n)");
        fflush(stdin);
        scanf("%c",&ch);
        if(tolower(ch)=='y')
        {
newnode->next=(struct linear_list*)malloc(sizeof(struct linear_list));
            newnode=newnode->next;
        }
        else
        {
            newnode->next=NULL;
        }
    }while(tolower(ch)!='n');

    printf(“\n Linked List is:\n”);
    ptr=start;
    i=1;
    while(ptr!=NULL)
    {
        printf("\nNode %d : %d",i,ptr->info);
        ptr=ptr->next;
        i++;
    }

printf("Enter the item tobe searched: ");
    scanf("%d",&item);
loc=0;
    i=1;

    
    ptr=start;
    while(ptr!=NULL)
    {
          if((ptr->info)==item)
          {
            loc=i;
            break;
          }
          ptr=ptr->next;
          i++;
    }
    if(loc==0)
    {
        printf("\n%d is not present in the linked list",item);
    }
    else
    {
printf("\n%d is present in the linked list at %d location",item,loc);
    }
getch();
}


http://
http://

Contributed by:
Rohit kakria
I am software developer

Resourse address on xpode.com
http://www.xpode.com/Print.aspx?Articleid=360

Click here to go on website