Stacks & Queues | Data Structures in JavaScript

Поделиться
HTML-код
  • Опубликовано: 16 окт 2024

Комментарии • 77

  • @chrisstolfa6819
    @chrisstolfa6819 5 лет назад +38

    This series was a godsend. For whatever reason there's a lot of misinformation when it comes to data-structures in JS compared to like C languages and Java... You simplified this so well using relevant ES6+ syntax. Bravo, this needs more views.

    • @valentinyosef5940
      @valentinyosef5940 3 года назад

      i realize Im quite off topic but do anybody know of a good place to watch new series online?

    • @gordonshiloh4997
      @gordonshiloh4997 3 года назад

      @Valentin Yosef Meh I use flixportal. You can find it if you google :P -gordon

    • @valentinyosef5940
      @valentinyosef5940 3 года назад

      @Gordon Shiloh Thank you, I went there and it seems like they got a lot of movies there :D I appreciate it !!

    • @gordonshiloh4997
      @gordonshiloh4997 3 года назад

      @Valentin Yosef No problem :D

    • @FreeSkypeGenerator1
      @FreeSkypeGenerator1 2 года назад

      @@valentinyosef5940 damn bots ;p caught me

  • @depressingsalad4538
    @depressingsalad4538 2 года назад

    I sincerely that your bed is at the right temperature every night this series helped me sm :)

  • @patrickjreid
    @patrickjreid 2 года назад +1

    I have come back to these videos so many times!!! By far the best data structures tutorial out there!

  • @maiaklimenko6614
    @maiaklimenko6614 2 года назад

    I cannot believe these scary terms mean such childishly simple things. You are a savior for beginning FED engineers)

  • @melaniesigrid8163
    @melaniesigrid8163 2 года назад +1

    I was so worried I wasn't understanding these concepts, your explanation is brilliant. Thank you Beiatrix. 💕

  • @LeetCodeSimplified
    @LeetCodeSimplified 3 года назад +3

    I didn't know it could be that easy! Great explanation!!

  • @tyrenrhinehart5697
    @tyrenrhinehart5697 2 года назад

    I subscribed and followed your github! Thanks for the video , you're awesome! Digging the snorlax and avocado in the back :)

  • @amadikesullivan2962
    @amadikesullivan2962 Год назад

    Very understandable, precise and enough

  • @TekJonesdesigns
    @TekJonesdesigns 3 года назад

    This series saved my ass. You're doing God's work!

  • @gina7898
    @gina7898 Год назад

    this was so helpful! such a great intro to stacks and queues

  • @sheebanair9654
    @sheebanair9654 3 года назад +1

    You made it seem so simple! Thank you, looking forward to more of your videos!

  • @MichaelSalo
    @MichaelSalo 4 года назад

    Outstandingly clear and digestable

  • @AMG-cc7pi
    @AMG-cc7pi Год назад

    4 years later i am watching this. thank u

  • @MichaelJaurigue
    @MichaelJaurigue Год назад

    🎉 Great video, thanks so much. Your explanations are spot on.

  • @LegacyUntouched
    @LegacyUntouched 4 года назад

    I am so glad I found this video, I am learning data structures in my javascript course and finding information pertaining to JS is hard. this is the exact info I need as I am going from LL to this. thank you, keep up the awesome work!

  • @kelleytbo
    @kelleytbo 4 года назад

    Thank you for existing.

  • @lazyworkroom
    @lazyworkroom 4 года назад

    I watched this video and finally understood the way of JavaScript of Stack and the Queue. Thanks for the good video :-)

  • @mustafamustafa7655
    @mustafamustafa7655 3 года назад

    Thank you for your videos. I would not be able to understand data structures without you. I am a visual learner at heart so your videos help me out a lot! :)

  • @CodingWithMrM
    @CodingWithMrM 3 года назад

    Thanks a lot. I learned it very easily and I able to understood how to implement and how it works. Thanks for this video

  • @keelnu
    @keelnu 3 года назад

    Thank you for helping me grasp Stacks and Queues! Great video and very easy to follow.

  • @realcheks
    @realcheks 4 года назад +1

    Hi Beiatrix, Thanks for explaining how to build stacks/queues using Javascript classes. But, I observed that the first element in the stack is at position [1]. I mean this.storage[0] is always undefined while this.storage[1] now contains the first element unlike in a typical Array. Is that an error or is there a reason for that?

  • @mdmoinmoin8888
    @mdmoinmoin8888 2 года назад

    Your videos on data structure are fantastic thank you.

  • @thinkerman
    @thinkerman 4 года назад +2

    You explain so well! thanks!

  • @altum2450
    @altum2450 3 года назад

    This is GOLDEN... thank you!

  • @WalkerDestroyer
    @WalkerDestroyer 2 года назад +2

    Seems like you quit youtube but this would have made a great tech tutorial channel if you ever pursued that! Really appreciate the video

  • @fdc_8507
    @fdc_8507 4 года назад

    So good, I hope you add more in this list in future 💕

  • @alfredomartinez5751
    @alfredomartinez5751 4 года назад

    nice !
    you are good at explaining the concepts, thank you soo much

  • @grayce1220
    @grayce1220 3 года назад

    You saved my day! Thank you

  • @RoyerAdames
    @RoyerAdames Год назад

    900 likes done by me. Thank you for the helpful video.

  • @zentekvideogames3589
    @zentekvideogames3589 4 года назад

    Is it any better to try to keep the head at 0 and move the elements accordingly when dequeueing? also, for Stack, is it ok to call length instead of size? thanks!

  • @urib6242
    @urib6242 4 года назад +1

    How do you do the animations in your videos? It is so beautiful!

  • @CodingWithMrM
    @CodingWithMrM 3 года назад

    Please continue uploading more videos

  • @indrajith6042
    @indrajith6042 3 года назад

    Class implementation of stack and queue could also be done by using array. Why did you choose to use objects ?

  • @aliedfurdich
    @aliedfurdich 3 года назад

    You are a great explainer! Subscribed.

  • @miketyson7274
    @miketyson7274 4 года назад +3

    Why not implement the queue with just array.push() and array.shift() ??? 🤔

    • @devOsaretin
      @devOsaretin 2 года назад +1

      Because of big O. using array for stack wouldnt be a problem but using it for queues would be a bad idea because of indexing

    • @jasonvictor1798
      @jasonvictor1798 2 года назад

      @@devOsaretin thanks for the reasoning! this needs to be bumped up

  • @ramusesandasari8451
    @ramusesandasari8451 3 года назад

    Awesome explanation

  • @georgeomara
    @georgeomara 4 года назад

    Wow, this is really greate. You are the best!

  • @harshrai6259
    @harshrai6259 3 года назад

    Great explanation 🔥

  • @rajinderdua2532
    @rajinderdua2532 4 года назад +2

    I wonder why you used objects instead of arrays in the class

  • @zentekvideogames3589
    @zentekvideogames3589 4 года назад +5

    Excellent video thanks, may I suggest getting rid of the background music? Keep it for intro and outro but during the explanations it kinda gets in the way. Thanks!

  • @SoufSideGuapo
    @SoufSideGuapo 2 года назад

    how are you seeing the output of your code without console.log() everything?

  • @khumbomunsaka
    @khumbomunsaka Год назад

    Thank you based programming lady.

  • @aliimranadil2
    @aliimranadil2 2 года назад

    Keep uploading... 😎

  • @ogbillity
    @ogbillity 3 года назад

    Thank you so much.

  • @codemonk9
    @codemonk9 4 года назад

    very well said, tysm!

  • @stevecarey2030
    @stevecarey2030 5 лет назад

    Well done, thanks!

  • @CristianRomero-up1nj
    @CristianRomero-up1nj 3 года назад

    good job

  • @mrfun9841
    @mrfun9841 5 лет назад

    simple, clear and Great ^_^

  • @joe-powell
    @joe-powell 3 года назад

    Thank you

  • @danielderese3170
    @danielderese3170 2 года назад

    wow thanks...

  • @markystudio14
    @markystudio14 3 года назад

    i like you!

  • @anthonypegues8147
    @anthonypegues8147 5 лет назад

    Nice vids! keep it going

  • @luuuizpaulo
    @luuuizpaulo 5 лет назад

    Amazing

  • @mitchdigitalnetwork
    @mitchdigitalnetwork 5 лет назад

    This the best

  • @Hamza_Tarar_
    @Hamza_Tarar_ 3 года назад

    I like Avocados.

  • @anusijo1023
    @anusijo1023 5 лет назад

    is it possible to create a video on avl tree

  • @karimbouche3563
    @karimbouche3563 9 месяцев назад

    Mmmm nice explanation girl

  • @rayjiang6444
    @rayjiang6444 4 года назад +1

    I still dont understand why would you use a stack instead of array in javascript

    • @JE-ll8yi
      @JE-ll8yi 3 года назад

      Stacks can be used for undos and redos.

  • @moritzw42
    @moritzw42 4 года назад

    where was the real world example? 11:27

  • @nobleboucon7743
    @nobleboucon7743 3 года назад

    start a Udemy course! you are superb

  • @kirillpavlovskii8342
    @kirillpavlovskii8342 4 года назад +1

    I just watch this videos because of her, she is so beautiful and her voice .. omg you are so sweet

    • @Bayo106
      @Bayo106 4 года назад +1

      and smart

  • @zakidev
    @zakidev 3 года назад

    Other teachers should learn your teaching skills too.

  • @litDevYT
    @litDevYT 4 года назад

    thanks babe ;)

  • @Bayo106
    @Bayo106 4 года назад +2

    I wonder why you used objects instead of arrays in the class