Data Structures in Golang - The trie data structure

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

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

  • @mattsb5196
    @mattsb5196 10 дней назад

    Great explanation and demo

  • @sweetbabyalaska
    @sweetbabyalaska 2 месяца назад

    I really like these videos. Its really well produced and very clear. Thank you!

  • @fagnersales532
    @fagnersales532 3 месяца назад

    Wow! That's amazing! I'd love to see how it could be implemented for an autocomplete feature. Tried it myself but couldn't find a way.

  • @jaimalad2902
    @jaimalad2902 5 месяцев назад +1

    I never knew such data structure exist. I implemented auto complete feature for my hobby site using dictionary 😅. Anyways good video, keep up the great work. Let's Go😂

  • @sheikhAbdelrahman
    @sheikhAbdelrahman 7 дней назад

    Some important points missed in the demo:
    [1] w[i] - 'a' >> yields a byte data type .. assuming that this is pure ASCII characters i.e. can be represented in only 1 byte only.
    [2] subtracting 'a' implies that there is no capital letters in w as well. Although there is no ToLower() called on w.

  • @anon_y_mousse
    @anon_y_mousse 2 месяца назад

    It should be noted that it's actually supposed to be pronounced like "tree" as its root comes from the word retrieval. Otherwise excellent explanation of how a trie works.

  • @TheErudito
    @TheErudito 3 месяца назад

    Hola