Android Implementing and Visualizing a Sorting Algorithm with Animations - Android Studio Tutorial

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

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

  • @xbulletboi563
    @xbulletboi563 Год назад +2

    Love your videos bro, they're really up to date and specific topics. Keep going!

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

    I just came across your channel. Your teachings are special, please continue with strength❤

  • @pablomolina9452
    @pablomolina9452 Год назад +1

    please continue making videos like this one!

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

    Thanks for this wonderful video.
    I think I've noticed a small mistake in the bubble sort algorithm. It seems not to do the last iteration needed - to compare the first two items.
    So, this is an example list where the problem appears:
    val list: List = listOf(
    148, 144, 78, 46, 51, 82, 121, 96, 41
    )
    The problem seems to be fixed if change the while loop in the alg. to:
    while(listSizeToCompare>=1){ } //
    Haven't tested it thoroughly though...

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

    Amazing, I`d like see another algorithm

    • @kapps7407
      @kapps7407  Год назад +1

      Merge sort will come today 😇

  • @md.shamimhossain8510
    @md.shamimhossain8510 Год назад

    Please make more videos about algorithm

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

    Please help me🙏
    How can I update code to achieve following
    I want to show new array after each iteration of outer loop and want to continue sorting in that array till the array completely sorted.

  • @055_tusharlad7
    @055_tusharlad7 Год назад

    Can I do the animation in the XML file?