Code to create a Linked List in C Programming Data Strucutres

  Рет қаралды 75,080

Vivekanand Khyade - Algorithm Every Day

Vivekanand Khyade - Algorithm Every Day

Күн бұрын

Пікірлер: 111
@megamanx2006
@megamanx2006 5 жыл бұрын
Sir, I just would like to say THANKS! Your videos have help my friends and me to pass the class and finally graduate. Some professors are always confusing students, but you make EVERYTHING easier. Please, keep up the good work and God bless you!
@geekyprogrammer4831
@geekyprogrammer4831 4 жыл бұрын
After referring to countless of resources, your videos made the most sense. You are a genius!!
@shubhampatel4879
@shubhampatel4879 2 жыл бұрын
Yes definitely
@fahadhassan8749
@fahadhassan8749 5 жыл бұрын
bhai I was wandering on youtube for last 5 days to clearify my concepts.Atlast I found you here I just wanna say you safe myself from quiting the linked list.
@gyogamble9996
@gyogamble9996 5 жыл бұрын
"Hello, friends!" Thank you for making this video. It was immensely helpful.
@priyangam9077
@priyangam9077 6 жыл бұрын
I swore this is the best lecture i have ever seen.
@iamonmyway6213
@iamonmyway6213 4 жыл бұрын
Yeah bro😭
@YohanMidha
@YohanMidha 5 жыл бұрын
Heres the above code implemented with a prit function I made to show you the output #include #include typedef struct node node_t; //Defining a Node struct node { int data; //each NODE has a data entry node_t *next; // and a pointer to the next Node }; node_t *head; void print() { node_t *temp = (node_t*)malloc(sizeof(node_t)); temp = head; printf("The list contains: "); while (temp != NULL) { printf("%d ", temp->data); temp = temp->next; } } int main(void) { int n; printf("Enter total number nodes: "); scanf("%d",&n); node_t *temp, *p; //for the first node , we must take it separately and shouldnt be included in the for loop int i = 1, element; printf("Enter node number %d: ", i); scanf("%d", &element); temp = (node_t*)malloc(sizeof(node_t)); temp->data = element; temp->next = NULL; p = temp; head = temp; for (i = 2; i data = element; temp->next = NULL; p->next = temp; p = p->next; } print(); }
@asdgqgqwe
@asdgqgqwe 5 жыл бұрын
Thanks!
@asmakhan541
@asmakhan541 5 жыл бұрын
Great bro
@elizavetamaslennikova8936
@elizavetamaslennikova8936 4 жыл бұрын
Nice job!
@preranadas4403
@preranadas4403 4 жыл бұрын
Can I add *head
@wonderfulmusiclofi
@wonderfulmusiclofi 3 жыл бұрын
sir your explanation is the best because you explains from basic that can be understand by every type of student...Thank you sir
@snehalmishra5429
@snehalmishra5429 4 жыл бұрын
That's the best video I have ever seen for the Linked List Simple and Clear Keep it up Sir
@bestredditstories1158
@bestredditstories1158 2 жыл бұрын
Starting to understand linked lists thanks to you. You’re amazing!!
@asdgqgqwe
@asdgqgqwe 5 жыл бұрын
You are a magician! Great explanation! AMAZING! You don't skip anything, great job!
@hafizbilalahmed8867
@hafizbilalahmed8867 5 жыл бұрын
A perfect teacher for Data Structure,,,
@sushannthreddy2092
@sushannthreddy2092 4 жыл бұрын
after watching your video i understood linkedlist concept thank you very very very much sir
@rutujamurge7713
@rutujamurge7713 5 жыл бұрын
Thank you sir, you make it understandable..
@gourangpathak4443
@gourangpathak4443 3 жыл бұрын
Finally Understood Thanks for this explanation
@devanshprakash8354
@devanshprakash8354 2 жыл бұрын
Explained in such an easy way!!!
@harshwalia6625
@harshwalia6625 6 жыл бұрын
Thank you for making this video, I finally understand linked list
@tanmaykapil5362
@tanmaykapil5362 6 жыл бұрын
Sir ultimate video keep inspiring us by making new videos lecture ***** 🌟
@Monk3y1993
@Monk3y1993 5 жыл бұрын
You made it easy dude, i love you.
@Pritamdas-bg7fp
@Pritamdas-bg7fp 5 жыл бұрын
sir u r teaching is easy to understood,
@gemedabekanaofficial6140
@gemedabekanaofficial6140 4 жыл бұрын
thank you continuous the other programs including all programs
@lab_er
@lab_er 5 жыл бұрын
Hello mr Vivekanand Khyade I am Alaa from Syria, thank you very much this vedio helps me
@pranalisuryawanshi491
@pranalisuryawanshi491 5 жыл бұрын
Very nice sir....Thanku so much...
@kulsoom_amin
@kulsoom_amin 4 жыл бұрын
Very well explained 👌👌
@009sonalisophiebilung9
@009sonalisophiebilung9 4 жыл бұрын
Nice lecture sir 👍
@gagantechtechnical6737
@gagantechtechnical6737 5 жыл бұрын
Speed 1.5x is good... Very good explanation 👍😉👌 Loved it
@hiwarekar22
@hiwarekar22 6 жыл бұрын
Very useful explanation!!!
@kanaksharma5979
@kanaksharma5979 4 жыл бұрын
great video sir
@sourabhpatil1780
@sourabhpatil1780 5 жыл бұрын
Thank you very much sir! Your explanation is very nice...Thank you
@firibuanyass
@firibuanyass 6 жыл бұрын
You are the best. I would like videos on EULER , AND HAMILTON theory!!!!
@rishimaborah9956
@rishimaborah9956 3 жыл бұрын
sir, I didn't understood one thing. Instead of assigning temp to p, why we didn't even used p in the first place for holding the base address of node1?
@muniruddinahmed7011
@muniruddinahmed7011 5 жыл бұрын
Nice explanation.. Can be understand each n every points
@manuchaudhary7902
@manuchaudhary7902 4 жыл бұрын
Since you are expert of C, do some videos on Embedded Systems.
@subhadipmaity3253
@subhadipmaity3253 5 жыл бұрын
Very nicely explained Sir..thank you..
@chrislione950
@chrislione950 4 жыл бұрын
this is a very good explanation but wish you had it on C++
@viveknirala4875
@viveknirala4875 6 жыл бұрын
Very easy to learn thanks
@SmarikaSharma-l2m
@SmarikaSharma-l2m 7 ай бұрын
thank you so much for the video
@aartisirvani5554
@aartisirvani5554 5 жыл бұрын
Very useful...thanks sir
@anchalmaurya5944
@anchalmaurya5944 5 жыл бұрын
nice explanation sir.......👍
@twinklegarg1413
@twinklegarg1413 4 жыл бұрын
Sir element variable is not declared so how can we use it?
@mohitsawal5314
@mohitsawal5314 6 жыл бұрын
This code is not working After compiling segmentation fault is appearing
@krishnaprasad3726
@krishnaprasad3726 6 жыл бұрын
Wonderful explanation....
@yogionutube
@yogionutube 6 жыл бұрын
U teach well brother , thumbs up from my side 👌👌👌
@azizrouame607
@azizrouame607 6 жыл бұрын
Very very good. Thank you.
@firibuanyass
@firibuanyass 6 жыл бұрын
you are the best. keep the good work up.
@sahilgarg7383
@sahilgarg7383 6 жыл бұрын
if i dont want to enter the number the nodes in the starting but in place of that i want to make as many nodes as i want... means no of nodes should be made according to my choice than what should i do in that case...
@himansuranjanmallick16
@himansuranjanmallick16 4 жыл бұрын
Thanks sir🙏🙏🙏
@asmakhan541
@asmakhan541 5 жыл бұрын
Great!
@parattakornchaisiriyanon2253
@parattakornchaisiriyanon2253 6 жыл бұрын
Awesome teacher
@divyrajverma8286
@divyrajverma8286 Жыл бұрын
हर हर महादेव जय माँ भवानी जय श्रीराम जय माँ सीता जय हनुमानजी हर हर महादेव जय माँ भवानी जय श्रीराम जय माँ सीता जय हनुमानजी 🙏🙏🙏🙏🙏❤❤❤❤❤❤🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩
@sayanbhattacherjee9829
@sayanbhattacherjee9829 Жыл бұрын
i watched 10-20 videos before watching this video. i did not understand. after watching this video i am able to understand how linked list works
@hapysethi1306
@hapysethi1306 4 жыл бұрын
Thank you sir
@pranalisuryawanshi491
@pranalisuryawanshi491 5 жыл бұрын
Sir what is the need for asking the user to enter the node number??
@asdgqgqwe
@asdgqgqwe 5 жыл бұрын
So that you may know how many nodes you are going to allocate. If you do not know then you do not know how many times to iterate through the loop. Technically you could simply keep track of how many inputs you get from the user and then have another command for displaying the entire linkedList, but it would complicate the code and draw the attention away from the main subject, which is "how to create the linked list"
@abdulkanis1663
@abdulkanis1663 4 жыл бұрын
@@asdgqgqwe why cant we just use the condition temp->next!=NULL in a while loop to display the nodes
@shubhampatel4879
@shubhampatel4879 2 жыл бұрын
Bro just be motivated to work on such detailed explanation.
@shubhampatel4879
@shubhampatel4879 2 жыл бұрын
Just AMAZING!!
@aadhiyanth5969
@aadhiyanth5969 8 ай бұрын
thanks sir
@temeyoutube5297
@temeyoutube5297 6 жыл бұрын
Thanks very very much!
@ashithraj5225
@ashithraj5225 5 жыл бұрын
thkZ alot
@sheruloves9190
@sheruloves9190 5 жыл бұрын
Thanks dada,
@riyazmohammad6123
@riyazmohammad6123 6 жыл бұрын
Can use a bigger board. Easily understandable tq
@kollolganguly
@kollolganguly 4 жыл бұрын
sir where did u declare the variable "element" in this
@cleanmess1400
@cleanmess1400 4 жыл бұрын
Comment section
@vva3520
@vva3520 6 жыл бұрын
Nice sir
@manishbhilare2897
@manishbhilare2897 6 жыл бұрын
how to display nodes in the linked list?
@laraibkamalasdar6837
@laraibkamalasdar6837 5 жыл бұрын
element variable initialize nahi hua hai (int n,element,i=1,*statrt); ye hoga waha par
@twinklegarg1413
@twinklegarg1413 4 жыл бұрын
Sir wt is the meaning of arrow sign?
@saketkumar3879
@saketkumar3879 6 жыл бұрын
How to display link list after this?
@AnshumanBisoyi
@AnshumanBisoyi 6 жыл бұрын
What is %d and & I know it's ampersand but what's the use of these two?
@dilipkumar-yd5ht
@dilipkumar-yd5ht 5 жыл бұрын
To take the value integer type
@priyabrata_sahu
@priyabrata_sahu 5 жыл бұрын
the variable element isn't declared ..
@shoaibabid393
@shoaibabid393 5 жыл бұрын
yar ak video union of lists pay b banao
@ritikaparbakar8474
@ritikaparbakar8474 6 жыл бұрын
super
@rhul0017
@rhul0017 5 жыл бұрын
awesomeeeee
@aravindekanath
@aravindekanath 6 жыл бұрын
how start's next pointer points next node?
@rajujadhav9121
@rajujadhav9121 5 жыл бұрын
what is struct ? and use of struct Node * next
@gd7474
@gd7474 5 жыл бұрын
Array list implementation ku podunga bro...
@devanshprakash8354
@devanshprakash8354 2 жыл бұрын
Why u r not making videos?
@tanmaykapil5362
@tanmaykapil5362 6 жыл бұрын
Sir your program is not running in the system plz help
@gamescan34
@gamescan34 5 жыл бұрын
Don't we need to declare variable element
@sarveshwarsridhar1807
@sarveshwarsridhar1807 5 жыл бұрын
S
@thinkingmad1685
@thinkingmad1685 4 жыл бұрын
Where is element variable defined?
@preetukamal8553
@preetukamal8553 5 жыл бұрын
Sir please make this same video in hindi
@labhsingh3065
@labhsingh3065 5 жыл бұрын
sir you did not declare{ element } in program
@faiz_e_faiz
@faiz_e_faiz 5 жыл бұрын
Exactly 😑
@shilpik1009
@shilpik1009 5 жыл бұрын
Can you please list a function to print the linked list in this program?
@devarapallisrilakshmi8445
@devarapallisrilakshmi8445 4 жыл бұрын
kzbin.info/door/CcOjyV_tfYE6GDDiW79rRA check this channel programs are there for all linked list operations if you like please subscribe
@learnsmall8583
@learnsmall8583 6 жыл бұрын
All of your videos are good. Keep them coming. I have a request. Can you do a video on Linked List flattening? ex: www.geeksforgeeks.org/flattening-a-linked-list/ along with Time/Space complexity analysis.?
@laraibkamalasdar6837
@laraibkamalasdar6837 5 жыл бұрын
error is comming in line(p=temp,start=temp;)
@sahilgarg7383
@sahilgarg7383 6 жыл бұрын
any why is malloc function used..??
@mightythunder232
@mightythunder232 6 жыл бұрын
@vijay vijay is there any memory shortage ?... Why we are avouding wastage of memory?🙄
@karmanyagupta8849
@karmanyagupta8849 5 жыл бұрын
For allocation of 12 bytes
@manojuniversity8044
@manojuniversity8044 5 жыл бұрын
nice sir but don't edit let it be or pls make want u want to give to viewers...
@anubhavsingh2016
@anubhavsingh2016 5 жыл бұрын
Use 1.25x speed.... Welcome 😊
@MohitSingh-em1nk
@MohitSingh-em1nk 6 жыл бұрын
Sir u used a variable named "element" in scanf bt didn't declare it before So there would be compilation error 🙄🙄
@0adarsh101
@0adarsh101 6 жыл бұрын
Mohit Singh yr shi btana kahan add krna h or kya...
@MohitSingh-em1nk
@MohitSingh-em1nk 6 жыл бұрын
adarsh kumar jha int n likha h vha int n , element ; hoga
@0adarsh101
@0adarsh101 6 жыл бұрын
Mohit Singh OK thanks
@faria_aki
@faria_aki 6 жыл бұрын
👍
@mohammadkhaled2464
@mohammadkhaled2464 5 жыл бұрын
didnt declare the element variable
@samiulislamdurjoy
@samiulislamdurjoy 4 жыл бұрын
G 32
@twinklegarg1413
@twinklegarg1413 4 жыл бұрын
Sir pls reply
@lakshmichandran2927
@lakshmichandran2927 6 жыл бұрын
Code is not visible clearly
Circular Linked List in Data Structures (with Code)
21:46
Vivekanand Khyade - Algorithm Every Day
Рет қаралды 51 М.
Understanding and implementing a Linked List in C and Java
18:15
Jacob Sorber
Рет қаралды 241 М.
Kluster Duo #настольныеигры #boardgames #игры #games #настолки #настольные_игры
00:47
龟兔赛跑:好可爱的小乌龟#short #angel #clown
01:00
Super Beauty team
Рет қаралды 97 МЛН
Não sabe esconder Comida
00:20
DUDU e CAROL
Рет қаралды 57 МЛН
How to create and display a Linked List in C programming
12:48
How to Create a Linked List C++ Introduction to Linked Lists
12:24
Paul Programming
Рет қаралды 933 М.
LINKED LIST (CREATION AND DISPLAY) - DATA STRUCTURES
42:19
Sundeep Saradhi Kanthety
Рет қаралды 368 М.
All you need to know about linked lists, Libft
38:04
Oceano
Рет қаралды 6 М.
Introduction to Linked Lists (Data Structures & Algorithms #5)
18:47
Learn Linked Lists in 13 minutes 🔗
13:24
Bro Code
Рет қаралды 328 М.
L1. Introduction to LinkedList | Traversal | Length | Search an Element
45:17
Introduction to Linked Lists - Data Structures and Algorithms
21:20
Reverse a Single Linked List
11:57
Neso Academy
Рет қаралды 273 М.
Kluster Duo #настольныеигры #boardgames #игры #games #настолки #настольные_игры
00:47