Recursive Linked List from Scratch

Поділитися
Вставка
  • Опубліковано 8 лис 2024

КОМЕНТАРІ • 14

  • @ib6548
    @ib6548 7 місяців тому +1

    Thank you for your detailed explanations and helpful tutorials. I truly appreciate your efforts. The animations in your tutorials are especially beneficial for visual learners like myself. Could you please share:
    1. The application you use for writing over VSCode?
    2. The software you use to create the illustrations of the linked list?
    3. How you split the screen to show both VSCode and the illustrations simultaneously?
    Thank you once again!

  • @havefun5519
    @havefun5519 Рік тому +1

    I like his tut, always detail explains and always 2 methods, and always explain with graph and move the arrow pointer step by step, and always could clear my confused. Thanks.

  • @veljkoblagojevic
    @veljkoblagojevic 3 роки тому +5

    Keep it going back man!
    This videos are awesome

  • @hardXcoreminecraft
    @hardXcoreminecraft 3 роки тому +1

    Nice video. Is the series on DS&A now concluded?

  • @sagarreddy7461
    @sagarreddy7461 3 роки тому +2

    Awesome thanks Alvin

  • @pallaspicks
    @pallaspicks 11 днів тому

    i am watching it in 2024 thanks!

  • @amnahmahmood4067
    @amnahmahmood4067 3 роки тому

    It's typically considered a good idea to keep a tail reference for example to insert at the end of the list. Is there any such use in keeping a tail pointer in a recursive implementation also in your opinion?

    • @mauiwowie2626
      @mauiwowie2626 Рік тому

      I always like to have it, like you said if you want to add something to the end instead of recursively traversing the list you just plop it in the end.

  • @jack_8715
    @jack_8715 3 роки тому

    Awesome video, helped me out.

  • @jainildodia
    @jainildodia 2 роки тому +1

    @7:40 you do not need to check if this.head === null. You can remove that whole if condition.That case will be handled by _append method

    • @ketib37
      @ketib37 2 роки тому

      You must check if this.head is null. The _append method fails completely if this.head is null, since its first line is a dereference of curr .next. You can't dereference null.

  • @ahmedhossam2368
    @ahmedhossam2368 Рік тому

    thx g

  • @CritiKaster
    @CritiKaster 3 роки тому

    Alvin, you're a great teacher. You have a new stalker i mean follower ;)

  • @aidanthompson5053
    @aidanthompson5053 Рік тому

    3:00