DOUBLE LINKED LIST (INSERTION AT BEGINNING,ENDING,SPECIFIED POSITION ) - DATA STRUCTURES

  Рет қаралды 62,043

Sundeep Saradhi Kanthety

Sundeep Saradhi Kanthety

Күн бұрын

Пікірлер: 53
@bhaskarjyotideka6905
@bhaskarjyotideka6905 5 жыл бұрын
Sir,your linked list series is the best one. Now, i'm able to create my own code for each and every operation of the linked list. Thank you so much, sir❤️❤️❤️.
@anandmishra1306
@anandmishra1306 5 жыл бұрын
this is the best tutorial for data structure
@atharvanimbalwar2585
@atharvanimbalwar2585 5 жыл бұрын
best online teacher :)
@sumanth5232
@sumanth5232 4 жыл бұрын
Without a doubt!
@holyshit922
@holyshit922 5 жыл бұрын
Segfault while inserting to the empty list Fourth instruction after scanf should be wrapped with if else condition if (head == NULL) tail = new else head -> prev = new
@indianreelstracker5067
@indianreelstracker5067 2 жыл бұрын
handsoff to your dedication.
@jakeroosenbloom
@jakeroosenbloom 5 жыл бұрын
You need a fan in your room, but great video lol
@vishwanathp8233
@vishwanathp8233 4 жыл бұрын
😂😂
@varunphatak4758
@varunphatak4758 4 жыл бұрын
Best online teacher 🙏
@ASHOK..2304
@ASHOK..2304 2 жыл бұрын
Thank u sir super ga cheppaaru
@swathiswetha9984
@swathiswetha9984 5 жыл бұрын
Sir please try to cover all the topics as early as possible
@sundeepsaradhi
@sundeepsaradhi 5 жыл бұрын
Hi swathi Sure I will complete them soon
@ahadalirvce6200
@ahadalirvce6200 4 жыл бұрын
lovely explanation Sir !!
@Gandhiboy
@Gandhiboy 4 жыл бұрын
Thank you so much ❤️
@mubashirali7538
@mubashirali7538 3 жыл бұрын
Well explained sir!!!!
@piyoushjaiswal4824
@piyoushjaiswal4824 3 жыл бұрын
Nicely explained 👍🏻👍🏻
@sairam8267
@sairam8267 3 жыл бұрын
Superb explaination sir .....
@nemani7670
@nemani7670 4 жыл бұрын
Sir, while inserting the node at specified position, can I change the order of steps?
@indianreelstracker5067
@indianreelstracker5067 2 жыл бұрын
I believe, at some part of insertion the order can be change, but many of cases must have the exact order of the step. Due to this we wont find the value of some node.
@dathunaikl403
@dathunaikl403 2 жыл бұрын
Thank you so much sir 💖
@mehwishahmed3691
@mehwishahmed3691 3 жыл бұрын
Tnx sir bht acha smjya
@devipriyankasandula1116
@devipriyankasandula1116 4 жыл бұрын
Good tutorial
@prakashpanda2702
@prakashpanda2702 5 жыл бұрын
Thanks sir 👍👊👊👊
@sachitabhowmik3611
@sachitabhowmik3611 Жыл бұрын
nice video sir
@kk-fc2oz
@kk-fc2oz 3 жыл бұрын
Sir I am EEE student you lesson is so good...... Sir i have to improve my IT knowledge what to do
@SurajSharma-cs7rf
@SurajSharma-cs7rf 4 жыл бұрын
Plz Suggest me the best book on data structure and algorithm 🙏
@deviprasanna2551
@deviprasanna2551 3 жыл бұрын
Reema thereja
@chandragirinaresh1240
@chandragirinaresh1240 4 жыл бұрын
❤❤❤❤❤
@kalathurkarthikreddy4152
@kalathurkarthikreddy4152 4 жыл бұрын
Excellent sir
@TejaSri-g2y
@TejaSri-g2y 4 ай бұрын
Sir,during insertion at specific position can we use tail instead of using temp-->next(new-->next=temp-->next)as(new-->next=tail)
@theacend1
@theacend1 2 жыл бұрын
Thank you sir.....
@nileshtayade3546
@nileshtayade3546 Жыл бұрын
sir while inserting at the end and the tail pointer is not given the what we have to do?
@shaikmahaboobriyaz2473
@shaikmahaboobriyaz2473 3 жыл бұрын
Shuold we add this formulaes in programing to add the doble linked list
@srihari-vv7sq
@srihari-vv7sq 3 жыл бұрын
definitely its the best
@ramakrishnasatyavarapu7595
@ramakrishnasatyavarapu7595 10 ай бұрын
Nyc
@zahidjoyia6330
@zahidjoyia6330 5 жыл бұрын
good work sir
@Rakibul_52
@Rakibul_52 Жыл бұрын
#include #include struct node { struct node*prev; int data; struct node*next; }*head,*current; void creation(){ int size; printf("Enter the linklist size= "); scanf("%d",&size); int i=1; while(iprev=NULL; newnode->data=value; newnode->prev=NULL; if(head==NULL){ head=newnode; current=newnode; } else{ current->next=newnode; newnode->prev=current; current=newnode; } i++; } } void display(){ struct node*temp; temp=head; while(temp!=NULL){ printf("%d->",temp->data); temp=temp->next; } } void insertAtfast(){ int value; printf("Enter the value= "); scanf("%d",&value); struct node*newnode; newnode=(struct node*)malloc(sizeof(struct node)); newnode->data=value; newnode->prev=NULL; newnode->next=head; head->prev=newnode; head=newnode; } void insertAtlast(){ int value; printf("Enter the value= "); scanf("%d",&value); struct node*newnode; newnode=(struct node*)malloc(sizeof(struct node)); newnode->data=value; newnode->next=NULL; current->next=newnode; newnode->prev=current; current=newnode; } void specific(){ int pos; printf("Enter the position= "); scanf("%d",&pos); struct node*temp=head; for(int i=1;inext; } int value; printf("Enter the value= "); scanf("%d",&value); struct node*newnode; newnode=(struct node*)malloc(sizeof(struct node)); newnode->data=value; newnode->next=temp->next; temp->next->prev=newnode; temp->next=newnode; temp->prev=newnode; newnode->prev=temp; } int main(){ creation(); insertAtfast(); insertAtlast(); specific(); display(); }
@kunji898
@kunji898 3 ай бұрын
Thankyou
@ravisah8179
@ravisah8179 4 жыл бұрын
Salute to you sir
@inyomansuyasa7254
@inyomansuyasa7254 Жыл бұрын
Why do I get double free error on my double linked list?
@mrajesh7853
@mrajesh7853 3 жыл бұрын
Thank you sir
@rajeshvarancr9661
@rajeshvarancr9661 4 жыл бұрын
Thank you Sir!..
@anikduley6719
@anikduley6719 5 жыл бұрын
sir can you give total programe of double linked list(like single linked list)
@thoyazpc7442
@thoyazpc7442 5 жыл бұрын
👍
@theacend1
@theacend1 2 жыл бұрын
Wasting all my money on college 💔
@kesagaurav8100
@kesagaurav8100 5 жыл бұрын
hi sir explain the concepts of tress
@Scylinth
@Scylinth Ай бұрын
its always the indian
@janaksapkota1477
@janaksapkota1477 5 жыл бұрын
Thanks sir
@ramdarling517
@ramdarling517 4 жыл бұрын
Sir once do program on linked list
@abhishekranjan1094
@abhishekranjan1094 4 жыл бұрын
Sir this data structures tutorials in c ...i want in java 🤒🤒🤒🤒🤒🤒🤒
@22CSEC49_NAGASURYATG
@22CSEC49_NAGASURYATG Жыл бұрын
Execution is better for understanding sir try to execute
@bhaktidukare7147
@bhaktidukare7147 4 жыл бұрын
Understandood better
@abdulrazak5354
@abdulrazak5354 5 жыл бұрын
Artificial intelligence guruchi class cheppandi.Razak ,si of police.thanks
LINKED LIST (CREATION AND DISPLAY) - DATA STRUCTURES
42:19
Sundeep Saradhi Kanthety
Рет қаралды 372 М.
Caleb Pressley Shows TSA How It’s Done
0:28
Barstool Sports
Рет қаралды 60 МЛН
OCCUPIED #shortssprintbrasil
0:37
Natan por Aí
Рет қаралды 131 МЛН
DOUBLE LINKED LIST (CREATE AND DISPLAY) - DATA STRUCTURES
21:26
Sundeep Saradhi Kanthety
Рет қаралды 54 М.
L3. Introduction to Doubly LinkedList | Insertions and Deletions
1:04:07
take U forward
Рет қаралды 198 М.
LINKED LIST (INSERTION AT BEGINNING,ENDING,SPECIFIED POSITION ) - DATA STRUCTURES
23:17
LINKED LIST (DELETION FROM BEGINNING,ENDING AND SPECIFIED POSITION) - DATA STRUCTURES
21:32
Doubly Linked List | Insert, Delete, Complexity Analysis
17:17
Blue Tree Code
Рет қаралды 70 М.
Database Sharding and Partitioning
23:53
Arpit Bhayani
Рет қаралды 105 М.
Top 7 Data Structures for Interviews Explained SIMPLY
13:02
Codebagel
Рет қаралды 242 М.