Data Structures in Python: Doubly Linked Lists -- Reverse

Data Structures in Python: Doubly Linked Lists -- Reverse

LucidProgramming

6 лет назад

9,789 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@muzammilrizvi6424
@muzammilrizvi6424 - 17.12.2022 22:32

Amazing, your videos help me a lot in my computer engineering journey.

Ответить
@prathameshshrikhande9524
@prathameshshrikhande9524 - 24.07.2021 17:12

probably the only coder teaching DS in python as Effective way

Ответить
@AymanGhaith
@AymanGhaith - 09.04.2021 10:55

Thank you, it is really nice to watch such explanations, but I have a question regarding this one, why not have a tail in a doubly-linked list? and what are the use cases for doubly-linked lists when to use them

Ответить
@ozamatazbuckshank
@ozamatazbuckshank - 24.01.2021 10:13

thanks. i tried the problem on hackerrank without learning about it first but your video explains it very well

Ответить
@mollaabbas4695
@mollaabbas4695 - 07.11.2020 13:28

Good... explanation... loving your videos ❤️❤️

Ответить
@amaljdev8029
@amaljdev8029 - 18.08.2020 20:21

It's really great...Amazing work...

Ответить
@chetanyadav5493
@chetanyadav5493 - 21.07.2020 10:07

sir, u are amazing. keep making more videos. It helps me a lot. thanks, u so much.

Ответить
@rayj1232
@rayj1232 - 29.03.2020 20:30

Awesome video. I just had a quick question though. When you made temp=curr.prev dosnt that make temp None since curr.prev is pointing to None? Thanks for your help and awesome vids!

Ответить
@JoshT4life
@JoshT4life - 26.02.2020 09:02

this is so complicated compare to traversing forward. Couldn't we have the print statement somewhere in the traverse method

Ответить
@rishikeshpuri6101
@rishikeshpuri6101 - 11.12.2019 13:00

getting this error:
print(cur.data)
AttributeError: type object 'Node' has no attribute 'data'

Ответить
@neerajankam6196
@neerajankam6196 - 24.12.2018 18:55

when cur initially starts off at cur = self.head, isn't cur.prev supposed to point to None as opposed to B like you mentioned in the video?

Ответить
@emerold7
@emerold7 - 12.07.2018 13:53

I am a little bit confused with the:if temp:    self.head = temp.prevI understand why we need the if statement but it is the vale of the temp.prev that is confusing me a bit. In the example, when starting with A, when it runs the if statement for the first time what would the pointer/node of temp.prev be?

Ответить