Circular Doubly Linked List (Deleting the Intermediate Node)

preview_player
Показать описание
Data Structures: Deleting the Intermediate Node of a Circular Doubly Linked List
Topics discussed:
1) C program for deleting the intermediate node of a circular doubly linked list.

Music:
Axol x Alex Skrindo - You [NCS Release]

#DataStructuresByNeso #DataStructures #CircularLinkedList #LinkedList
Рекомендации по теме
Комментарии
Автор

struct node* temp = new node();
temp = tail->next;

while(pos>1)
{
temp = temp->next;
pos--;
}

temp->prev->next = temp->next;
temp->next->prev = temp->prev;

free(temp);
return tail;


I did this using a single temp. I want to thank NESO ACADEMY to explain this so called hard topics so easily. You made this possible that I could write the logics before playing your video, now I don't have to cram all these logics.. I can write them anytime anywhere . And this boosted my confidence tremendously !!!. Thank You so much Neso Academy.

akkumar
Автор

complete the entire course your explanations are the ones which i get instantly like NO confusion at all. you share a part in my brain for its to be lightening fast man.

chiragsharmaYoutube
Автор

Sir please post atleast weekly two videos...
You are the best teaching of DATA STRUCTURES.. Thank you sir..

arulkumara
Автор

Sir, really you upload 1 video in four days 😞😞😞 plzz complete course fast....🙏🙏🙏

DeepakKumar-nkcv
Автор

no need of using second for all positions
node* del_inter(node* tail, int position){
if(tail==NULL){
printf("list is empty \n");
}
node* temp=tail->next;
if(temp==tail){
free(tail);
tail=NULL;
return tail;
}
while(position>1){
position--;
temp=temp->next;
}
temp->prev->next=temp->next;
temp->next->prev=temp->prev;
free(temp);
temp=NULL;
return tail;
}

shashinegative
Автор

Please sir, complete course soon
Waiting eagerly 🙏

programminginfo
Автор

Sir please I request you to upload the Complete course of data structures there is a lot left and exams are near. In this speed we will never be able to complete our course in time.

prateekgupta
Автор

Sir, plz plz plz plz plz make a videos on stack and queues

saurabhtripathi
Автор

thanks a lot for this tremendous effort!! are you planning to post stacks, queues, trees graphs...etc?

salsabeeltantoush
Автор

Sir upto which month data structure will be

DeepakKumar-nkcv
Автор

Thanks a lot sir ❤️
Ur video really helped me

Foxlaren
Автор

Sir Evans are near please complete it fast atleast two videos in a week

dogsgallery
Автор

When will the video made on tree..please make videos fast

dogsgallery