Lecture 82: Introduction to Doubly Linked List || Insertion and Deletion in Doubly Linked List

preview_player
Показать описание

00:00 Intro
0:56 Understanding Doubly Linked List
5:33 Implementing Node of Doubly Linked List
7:56 Insertion Operation on Doubly Linked List
8:44 Insertion at Start on Doubly Linked List
12:40 Discussing Edge Cases
15:15 Insertion at End on Doubly Linked List
19:28 Discussing Edge Cases
20:28 Code Part - Inserting node on Doubly LinkedList
24:08 How to convert Array into Doubly Linked List
33:03 Code Part - Converting Array into Doubly Linked List
36:33 How to create Doubly LinkedList using Recursion
50:12 Code Part - How to create Doubly LinkedList using Recursion
54:05 Insertion at Any Point on Doubly Linked List
59:50 Discussing Edge Cases
1:02:33 Code Part - Insertion at Any Point on Doubly Linked List
1:11:41 Deletion Operation on Doubly Linked List
1:12:25 Delete at Start and End on Doubly Linked List
1:19:51 Discussing All Test Cases
1:22:00 Code Part - Deletion at Start and End on Doubly Linked List
1:28:06 Deletion at Any Point on Linked List
1:33:30 Code Part - Deletion at Any Point on Linked List
1:39:05 Applications of Doubly Linked List
1:46:37 Outro

Day 119/180, #180daysofcode #180 hard

We are doing 180 days challenge and going to complete the whole course within the duration with quality content on Youtube. I am on the mission to create a tech revolution in our country and in upcoming future we want to create a tech which will create many jobs in India.

Video will come on Mon-Fri at 6am in the morning

DSA Course for free
C++ Free Course
Rohit Negi DSA Course C++
Coder Army DSA Course c++
Function in C++
Pointers in C++.
Strings
Vector
Introduction to Recursion

Рекомендации по теме
Комментарии
Автор

Started following your lectures from Recursion and i can say that

Recursion ache se chamak gaya
OOPs ache se chamak gaya
LL ache se chamak gaya

ab aage ke topics bhi apse hi padhunga

ndacadet
Автор

Best teacher i found on net.. Explain everything deep.. Put his 100% effort .. Thanks to u brother from heart❤

ParvezKhan-mjyt
Автор

I am a java developer but I still follow this playlist for dsa. His explanation is really good.

impeller
Автор

such an amazing lecture! I'm preparing for my upcoming endsem exams and getting every concept crystal clear.Thanks to you Sir!

Annaa
Автор

Spotify is using singly linked list for free version now 😂😂

joydeep-halder
Автор

Hamesha ki tarah ache se chamak Gaya 👍🏻❤️

heetpatel
Автор

Applications :
-Snake Game
-Gallery (image viewer)

Vivek-fccl
Автор

I don't have words for the efforts you put in❤

kashafkhan
Автор

finally completed in two days .but, every point is crystal clear, great sir

deepakkumarchoudhary
Автор

1:10:48 in case of single node in list.. curr->next =null and that's why temp-> next=null .. Temp->next->prev will give error

ParvezKhan-mjyt
Автор

Maza aa gaya bhaiya, dil khus ho gaya aaj toh 😊

nitinverma
Автор

chamak gya bhaiya
you are the world best coding teacher.

RajKumar-qzmy
Автор

maja aa gaya bhaiya . After this video i am reallly excited for mern stack course

Sony_
Автор

Ha Ji bhaiya Good Afternoon aaj lecture subha nhi dekh paya ♥♥

relaxingtime
Автор

More edge case.. If linked is empty.. Error at middle end portion code.. And if position is great than the no. of linked list.. It will fail. While it should insert at the end in such case

ParvezKhan-mjyt
Автор

bhaiya ye (recursion) wale m 10 wale element ki position 2 kese ho jarhi h

at-clof
Автор

Node* create(vector<int> arr, int i, int n){
if(i==n)
return NULL;
Node* temp=new Node(arr[i]);
Node* re=create(arr, i+1, n);
temp->next=re;
if(i!=n-1)
re->prev=temp;
return temp;
}

is anything seems wrong structing for som test cases
array to doubly linked list

physicstyco
Автор

I have one question k prev wale pointer ko initialize he nai krwaya or na he prev =curr Liya hai deletion at end and mid

Waleeduog
Автор

Bhaiya
53:08 ye recursion wala homework ka solution dey doh bohot dimage ghum gaya iss questions mai pleasee

shinzo
Автор

can any one give me all the code of this video.Please

ZakirHossen-gd