Introduction to linked list

preview_player
Показать описание
See complete series on data structures here:
In this lesson, we have described linked list data structure. We have analyzed our limitations with array data structure and tried to understand the need for linked list.

For updates on videos and courses, you may subscribe to our YouTube channel.

You may also like us on Facebook:
Рекомендации по теме
Комментарии
Автор

Funny how i have to pay 10K for data structure course at my University and still learn nothing but here i understood everything for FREE. Thank you so much sir.

mashable
Автор

Your videos are beautifully explained, you have that gift, not everyone can explain with such clarity. Thanks for your help.

kyrinky
Автор

Hi Greg,
Low level languages are machine language(instructions in binary) and assembly language. C is mostly called "mid-level language" because it gives a lot of low level control. But, generally the idea is that high level languages should give you a source code that should be portable to any architecture. Machine and assembly code work for a particular architecture only and need to be re-written if they need to be ported to other architecture.

mycodeschool
Автор

Hi Mohan,
Insertion at end will take O(n) because you will have to traverse the complete list to insert at end. Insertion at head will take O(1) ( constant time )

mycodeschool
Автор

*My takeaways:*
1. Limitations of arrays 0:18
2. Linked list 7:43
3. Unlike an array, we can't access an element of a linked list in constant time O(1) 14:29
4. The time for accessing an element of a linked list is O(n), for inserting an element to a linked list is also O(n) 15:06
5. Benefits of linked list 16:29

leixun
Автор

My dream is to become a Software Engineer in the Bay Area, and as I sit through my first Data Structures and Algorithms course, and cringe at the explanations given by my professor and barely understand other concepts so far, this explanation of Linked Lists give me hope. Thank you so much for paying forward your knowledge, and presenting it in a way that I could understand it.

brinderdhaliwal
Автор

Even IIT faculty can't teach in such better way

nirajsuka
Автор

I'm currently taking a data structures class. I've listened to my professor. I've read books. I've watched youTube videos. This video is by far the clearest, easiest to understand, most well put together lecture on linkedLists I have seen. You are very talented at explaining things.

skittlznt
Автор

If I was memory manager, I'd be like "Make up your damn mind, Albert!"
That look on memory manager's face is real though😂

dreamer
Автор

Sir, that was so perfectly explained. The storytelling does wonders in explaining. Amazing work!

lindawisebear
Автор

this is great i am glad that you make this course for free, this means so much to me. It's really sad i heard that you passed a way this is such a big lose you are such a talented man, Rest in Peace man

danhle
Автор

I have no words to describe how you helped me with you video tutorials. Thank you very much.

monicaslv
Автор

Can't imagine a guy with such knowledge can go to the bottom and explain the stuff in such a way is the biggest gift that a guy can have. Thank you.

alijumc
Автор

Great explanation man. I wish my teacher taught the same in this way. Keep it up. You are making lots of lives easier.

thecoffeehog
Автор

Memory manager is like "ah shit here we go again!"

sheddy
Автор

I bet nobody on you tube can explain as good as you : A genuine compliment straight from my heart after watching it :)

MohitK
Автор

Mind blowing tutorial, never seen any better tutorial than this on linked list.Thanks a lot man

alokkumar
Автор

This is just what i needed to keep progressing. So glad I found this playlist! thanks for teaching.

arthurtripp
Автор

I studied for over an hour and understood nothing of Linked List. I got the gist in 10minutes from your video. Thank you so much. :) :)

shiladityaacharya
Автор

Apeksha Contractor  We have a playlist on Data structures - Introduction to data structures  

mycodeschool