Circular Linked List - C++ Placement Course | Lecture 22.10

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

This is the first time when I witnessed a crisp use of do while

anuragpandey
Автор

Its a free premium course and I am learning from this course.
I had fixed in my mind that this course is worth of more than ₹10, 000 and this keeps me consistent in this course.

anuragjangid
Автор

The way you explain everything is amazing ....i mean it just becomes a lot easier to understand such concepts.

aditisharma
Автор

Nice and top didi keep doing keep growing your best give us free every time and everything great hat's off you didi

santoshdevi
Автор

node *insert_node(node *head){
int num, key;
cout<<"enter number to insert";
cin>>num;
cout<<"enter key after which to insert";
cin>>key;
node *temp1;
node *temp;
temp=head;
temp1= new node;
temp1->val=num;

temp=head;
while(temp->val!=key){
temp=temp->next;
}
temp1->next=temp->next;
temp->next=temp1;

return head;
}

aphroditegaming
Автор

This video is very very helpful and very very knowledgeable thank you aman bhaiya and thanks to whole team❤️❤️❤️❤️

DineshSharma-ppox
Автор

Hello koi ab tak jage he 😂😅
Like kar ke pool do
Edit : it's night 12:04 😁😂😅

praveenreddy
Автор

The moment you say "feel aa gayi na ab toh" good 😂😂😂

AbhiAbhishek
Автор

Video 15 min ka nahi, pr 1 ghante se bhi jyada time lag gaya.. temp, head, temp, head, ..next--dimakh kharab/ pr krna to padega..placement jo nikalni hai 😫

imsandesh
Автор

Yaar coding dhekne mein jab itna maza araha hai to karne me kitne ayega maza i am excited.

amaanalikhan
Автор

3 :12 why you need to traverse throught the loop when head is NULL, if (head == NULL) that means list is empty . So you only have to create a new node and add a self link i.e. head = newNode ; newNode->next = head ; Ig this should work ...correct me if I am wrong.

prateeksomani
Автор

Bhaiya uploading video at 12
Me: Seh lege thoda!

vaibhavashta
Автор

Comments dekhne kaun kaun Aya hai itne raat me 🤣🤣🤣😂😂🤣🤣😂😂🤣🤣😂😂😂😂🤣🤣🤣🤣

praveensuman
Автор

Aisa lagta hai tum khud ko pda rahi ho😢

RahulKumar-sjkl
Автор

Better variable names used as compared to other videos

shreechatane
Автор

daal makhni baan rahe hai aj ghr me uhhh aman bhaiya cooker ke whistle a rahe hai !!!!

rahuldange
Автор

After complete c++ please upload video on how to creat a basic level of games using c++

rohitmathur
Автор

Feel aana jaruri hai fir chahe computer hang hi kyu na ho jaye

deepakmodi
Автор

Getting some random numbers after deleting and then printing the linked list

exploringeverything
Автор

students: Didi feel nahi aa rahi !!
didi : loo dekho mera hang computer
students : haa didi feel aa gai

btw thank u so much for all your's effort

anchalyadav