#include<bits/stdc++.h>
using namespace std;
class node{
public:
int data;
node* next;
};
node*start=NULL;
void create(int n)
{
node*newn;
node*temp;
for(int i=0;i<n;i++){
newn=new node;
cout<<"\nEnter Data: ";
cin>>newn->data;
newn->next=NULL;
if(start==NULL){
start=newn;
temp=start;
}
else{
temp->next=newn;
temp=temp->next;
}
}
}
void first(){
node*newn=new node;
int a;
cout<<"Enter the data u want to insert at the first place:";
cin>>a;
newn->data=a;
newn->next=start;
start=newn;
}
void last(){
node*newn=new node;
int b;
cout<<"Enter the value you want to insert at the last place:";
cin>>b;
newn->data=b;
newn->next=NULL;
node*temp=start;
while(temp->next!=NULL){
temp=temp->next;
}
temp->next=newn;
}
void middle(){
node*newn=new node;
int c;
int pos;
cout<<"Enter position: ";
cin>>pos;
cout<<"enter the data you want to insert:";
cin>>c;
newn->data=c;
node*temp=start;
for(int i=1;i<pos-1;i++){
temp=temp->next;
}
newn->next=temp->next;
temp->next=newn;
}
void display(){
node*temp=start;
while(temp!=NULL){
cout<<temp->data<<" "<<temp<<" "<<temp->next<<endl;
temp=temp->next;
}
}
int main(){
int n;
cout<<"enter how many data you want to see:";
cin>>n;
create(n);
display();
first();
display();
last();
display();
middle();
display();
}
{"html5":"htmlmixed","css":"css","javascript":"javascript","php":"php","python":"python","ruby":"ruby","lua":"text\/x-lua","bash":"text\/x-sh","go":"go","c":"text\/x-csrc","cpp":"text\/x-c++src","diff":"diff","latex":"stex","sql":"sql","xml":"xml","apl":"apl","asterisk":"asterisk","c_loadrunner":"text\/x-csrc","c_mac":"text\/x-csrc","coffeescript":"text\/x-coffeescript","csharp":"text\/x-csharp","d":"d","ecmascript":"javascript","erlang":"erlang","groovy":"text\/x-groovy","haskell":"text\/x-haskell","haxe":"text\/x-haxe","html4strict":"htmlmixed","java":"text\/x-java","java5":"text\/x-java","jquery":"javascript","mirc":"mirc","mysql":"sql","ocaml":"text\/x-ocaml","pascal":"text\/x-pascal","perl":"perl","perl6":"perl","plsql":"sql","properties":"text\/x-properties","q":"text\/x-q","scala":"scala","scheme":"text\/x-scheme","tcl":"text\/x-tcl","vb":"text\/x-vb","verilog":"text\/x-verilog","yaml":"text\/x-yaml","z80":"text\/x-z80"}