Git Product home page Git Product logo

data-structure's Introduction

#( data-structure with c)

#include<stdio.h> #include<stdlib.h>

void create();

void display();

void deleteAtBeg();

void deleteAtMid();

void deleteAtLast();

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

};

struct node *head=NULL, *tail=NULL;

int main() { create(); display(); deleteAtBeg(); display(); deleteAtMid(); display(); deleteAtLast(); display();

return 0;

}

void create() { int m,ch; struct node *temp ;

do{
	printf("\n Enter the data that tou want");
	scanf("%d",&m);
	temp=(struct node*) malloc(sizeof(struct node));
	
	temp->data=m;
	temp->prev=NULL;
	temp->next=NULL;
	
	if(head==NULL)
	{
		head=tail=temp;
	}
	else
	{
		tail->next=temp;
		temp->prev=tail;
		tail=temp;
	
	}
	printf("\n For more nodes to insert type 1");
	scanf("%d",&ch);
	
}while(ch==1);
printf("\n");

}

void display() { struct node *ptr ;

ptr=head;

while(ptr!=NULL)
{
	printf("%d-> ",ptr->data);
	ptr=ptr->next;
}

printf("\n");

}

void deleteAtBeg() { struct node *ptr;

ptr=head;
head=head->next;
ptr->next=NULL;
free(ptr);

}

void deleteAtMid() { struct node *ptr; int m; printf("\n enter the node you want to delete :"); scanf("%d", &m); ptr=head;

while(ptr->data!=m)
{	
   ptr=ptr->next;   
}
ptr->next->prev=ptr->prev;

ptr->prev->next=ptr->next; ptr->next=NULL; ptr->prev=NULL; free(ptr);

}

void deleteAtLast() { struct node *ptr; ptr=tail; tail=ptr->prev; tail->next=NULL; ptr->prev=NULL; free(ptr); }

data-structure's People

Contributors

parthkrishnan avatar parthkrishnan007 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.