Introduction to Queues - Data Structures and Algorithms

Поделиться
HTML-код
  • Опубликовано: 2 авг 2024
  • Start your software dev career - calcur.tech/dev-fundamentals 💯 FREE Courses (100+ hours) - calcur.tech/all-in-ones
    🐍 Python Course - calcur.tech/python-courses
    ✅ Data Structures & Algorithms - calcur.tech/dsa-youtube
    ~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~
    ✉️ Newsletter - calcur.tech/newsletter
    📸 Instagram - / calebcurry
    🐦 Twitter - / calebcurry
    🔗 LinkedIn - / calebcurry
    ▶️ Subscribe - calcur.tech/subscribe
    👨🏻‍🎓 Courses - www.codebreakthrough.com
    ~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~
    ↪ My Amazon Store - www.amazon.com/shop/calebcurry
    🅿 Patreon - calcur.tech/patreon-calebcurry
    🅖 GitHub Sponsors - github.com/sponsors/CalebCurry
    Ⓟ Paypal - paypal.me/calcur
    🅑 Bitcoin - 3HnF1SWTzo1dCU7RwFLhgk7SYiVfV37Pbq
    🅔 Eth - 0x350139af84b60d075a3a0379716040b63f6D3853
    📈 Buy Bitcoin - calcur.tech/crypto
    Reserve the Ruby Steel crypto rewards card and get a $25 bonus (use affiliate code "Caleb") - calcur.tech/crypto
  • НаукаНаука

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

  • @MadeyeMoody492
    @MadeyeMoody492 3 года назад +12

    Not once during your videos do I feel overwhelmed with information and you always keep things light-hearted by cracking a joke every now and then. This is why I'm able to watch your videos so easily rather than them being a chore where I have to keep pausing and replaying things. Great work!

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

    Hi Caleb! I only watched this video to improve my English lol, but I got interested in your approach of not teaching the queue's implementation in a deeper way. I think, nowadays, most of the languages have queue's implementation integrated / using third part libraries, I think you did a great analysis of what is necessary to pass on to your students.

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

    Bro, you are amazing!! 👍👍

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

    Subscribed. Thank you.

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

    Very blessed man, thanks for the free music theory class on Udemy

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

    Amazing...

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

    Welcome back brother 💪👍 i love your videos.
    Greetings from Egypt

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

    A recursive function is a good example of leveraging stack that a Dev 1 knows of. Is there an example that a dev 1 or 2 has implemented that uses queues? Do async function rely on queues? Or react debouncer functions?

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

    😀

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

    Good Evening Dear (FROM) #KOSOVO; Bro.
    AWESOME EXPERIENCE LEARNING
    ↙️↙️↩
    ⭐⭐⭐⭐⭐⭐⭐⭐ !!!!!!
    🔑

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

    69 ? really ? HA HA HA

  • @DavidR...
    @DavidR... Год назад

    fifo = list[]
    fifo.insert(0, 4)
    fifo.insert(0, 3)
    fifo.insert(0, 2)
    fifo.insert(0, 1)
    print(fifo)
    fifo.pop()
    fifo.pop()
    print(fifo)