Python: Linked Lists (fast)

preview_player
Показать описание
Linked Lists explained (fast) with animated example, and how to write a Linked List program in Python 3, with add, remove, find and size functions example code implementation.

PYTHON LINKED LISTS

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

Thank you for being straight to the point and concise and not dragging this on for 20 minutes!

Chutneybhai
Автор

All I see on youtube are half-hour or 40 minute videos about Linked Lists. Thanks for such a brief and clear explanation!

pablomora
Автор

sometimes something explained fast is clearer than something explained longer because the waffle is filtered out

akaakaakaak
Автор

I actually liked the speed of the video. It was like a final nail to my understanding. Thanks :)

qazizaahirah
Автор

Thank you for this!! It is easy to understand, it didn't need a 40 minute video to explain the concept!

morenomt
Автор

Thanks! It's really easy to understand, and with reasonable time to watch the whole video.

phillipuchen
Автор

Thank you so much, I studied and wrote my own code with your instructions and even found a bug which is
Line 31 has to be self.root = this_node.get_next()
Otherwise, if you want to remove root, it can not ....
Thank you so much...

hserdarkuyuk
Автор

Good Video, wouldn't be able to program it on my own but got a good understanding of linked lists

_inetuser
Автор

The perfect video I was searching for.

ibnislam
Автор

Thank you very much, Sir Joe James! The martinis are on me!

edd
Автор

best video ive ever seen so far about the linked lists ;)

hajerLK
Автор

Great video ! I'm pretty new to programming but I didn't mind the speed as I could just pause the video whenever. If I'd change anything, I'd explain the find function first, before the remove function

raduandreicosmin
Автор

Nice video. the add function is really Neat and simple!!

prithvikapoor
Автор

You are very good at breaking these things down, one of the biggest challenges Ive come across is finding someone who can explain these things. I give this video 99 thumbs up, had you applied this in a real world scenario I would be willing to consider 100 thumbs up(perfect score by my scale).

This comment is in no way meant to be incendiary or critical, a mere observation. I think you do a fine job and I sense your employer feels the same way.

darkthrongrising
Автор

the fast part of the video is very descriptive because 10 seconds into the video I remembered what a linked list is
10/10 not clickbait

tamertamertamer
Автор

How would you modify this code to add to the end of the list rather than the beginning?

DCentFN
Автор

Hi Joe, how to find out sum of values in a linked list? Thank you.

pchebbi
Автор

Very impressive content. I really liked it. Didn't really need to watch, but I just used to see the concept of how to do it. Probably just use a quick array instead. More complex than needed, at moment.

PoeLemic
Автор

How are you getting all the autocompletes for all your class's getters and setters

RiteshKumar-lhxn
Автор

How would one modify this so rather than adding to the front of the list it adds to the back?

DCentFN