Binary Search Tree - Insertion Pseudo Code

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

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

  • @no-maan1020
    @no-maan1020 4 года назад +38

    this channel is extremely underrated. very good and easy explanation

  • @aryanraje2770
    @aryanraje2770 3 года назад +114

    Can we just take a moment to appreciate her handwriting?

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

      Yeah call her , I'm ready to take and make that moment

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

      No

  • @logicontips9490
    @logicontips9490 4 года назад +39

    I haven't seen so simple and beautiful explanation ,thanx I could understand it at once. Keep it up!!

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

    The is the best explanation so far. Now I can write the pseudo code without going back to video. Thanks a lot.

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

    your explanation is so good even I can not tell in words , you cleared my all doubts . Please keep making this kind of videos.

  • @night6414
    @night6414 27 дней назад

    you are the best ds teacher in the world, thanks a lot mam

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

    Your teaching skills are too good mam
    Your explanation is simply superb❤️👌🏼

  • @admirald.rifter1819
    @admirald.rifter1819 2 года назад

    The dark horse of ADS structures... well done for your hard work

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

    you explanation and code is super easy and simple, thank you so much ❤️

  • @xoxo-yp1fc
    @xoxo-yp1fc 3 года назад +1

    the most underrated yt channel

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

    im baffled from how good she explains things in her videos

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

    Best bst insertion explanation on you tube 👍

  • @sayingsofislam1
    @sayingsofislam1 2 месяца назад +1

    Very easy and good explanation for beginners 😊

  • @khushikareliya6042
    @khushikareliya6042 4 года назад +4

    Great work, perfect explanation!

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

    I really thank you!! I ase every code, program and nothing is so nice teachead as your method. Thanks so much i will pass my class thanks to you

  • @ashutoshsingh5568
    @ashutoshsingh5568 3 года назад +7

    I think your recursive insert method call should be inside else case.
    In that case that will only be called when root.left or root.roght are not equal to null.
    Apart from above thing, your tutorials are awesome. I am learning ds in an easy way. Thanks a lot.

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

    This is awesome !!
    Note: you should have good understanding about recursion before
    learning this.

  • @Poojasaini-sb4dp
    @Poojasaini-sb4dp Месяц назад +1

    Fabulous ❤❤❤

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

    what as easy explaination ...amazingly taught

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

    What value should we give to the root every time when we called the function insert

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

    Thankyou Ma'am, You are so Beautiful in teaching..

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

    Maybe I missed it but was there any mention of how to treat duplicates?

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

    Thanks with love from 🇳🇬

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

    inside main when i call method i send value and root what i send to it

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

    I've a question ..In Binary Search tree Elements of left subtree are less than root and right subtree is greter than root .Then how this example works ??

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

    You are the best please keep goingg!

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

    very nicely explaned! . Keep it up.

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

    superb way of teaching ...

  • @JP-programming
    @JP-programming 2 года назад

    very much thanks, your explanation is great .

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

    thank you soooooooooooo much 💕💕💕💕💕💕💕 you make it much easierr❤❤❤

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

    this is what I was looking for

  • @-ramya
    @-ramya 4 года назад

    In insertion and deletion why time complexity is more can you plz tell why..

  • @rddler9238
    @rddler9238 3 года назад +2

    Much respect !!

  • @marry-sh3713
    @marry-sh3713 3 года назад

    Really thankful for you♥

  • @Abhishek-bo9ge
    @Abhishek-bo9ge 3 года назад +1

    Best video ❤️❤️❤️❤️👍👍👍👍👍👍

  • @AjayKumar-ez7wi
    @AjayKumar-ez7wi 2 года назад

    Thanks to you for this nice explanation

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

    Is there a way to do this without the root parameter and just the value?

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

    Bohot ache se likha ma'am

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

    Good explanation ❤️💜❤️💜

  • @vennu_v9392
    @vennu_v9392 3 года назад +2

    basically i don't comment for any videos , trust me very very very very simple and understandable!

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

    When you are trying to insert 2, I think we should have insert as else part of if(root-left == null)

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

      Root 1 is lass than value 2, so it's in if(root.rigth == null)

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

    Can I have code for deletion too?

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

    Very good explanation, you just missed return or else clause after create a new node to put in node.right or node.left.

  • @Zainab-ry5nb
    @Zainab-ry5nb Год назад

    Amazing!❤

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

    thank you very much for the explanation it was extremely helpful

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

    You are too good ma'am

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

    Best explanation 😊

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

    So simple algorithm thank you mam for this

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

    You saved my life, thanks!

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

    Thank you soo much!!

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

    Super helpful. Thank you.

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

    it is so good , I like it

  • @bellasvideo5620
    @bellasvideo5620 5 лет назад +4

    Too Good!

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

    why you stopped making videos?

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

    im in love with Lauren

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

    I think the BST which you are creating using this pseudo code is not a true binary search tree.

  • @begovsky5591
    @begovsky5591 5 лет назад +1

    Thank you so much !

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

    good explaining ma'am

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

    Thank you

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

    Very very useful

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

    thanx I could understand it

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

    Too clean, everything writing, audio and quality of content😊

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

    Good job

  • @muhammadarifkayani4337
    @muhammadarifkayani4337 3 года назад +2

    Student from Pakistan 🇵🇰❤️

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

    Pls upload on deletion operation also

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

    thanks a lot.

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

    nice explANATION😀

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

    Tqsm mam..

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

    so smart

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

    ❤❤

  • @ribqaasif9406
    @ribqaasif9406 8 дней назад

  • @asifkhan-rb8tl
    @asifkhan-rb8tl Год назад

    Make video no deletiom

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

    Hey I am a random guy who comments on random RUclips channels to motivate them instead of commenting on channels having millions of subscribers on RUclips......you are doing well....

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

    This only explains how to remember the answer but not how to find the answer; this only consider the an ideal use case.

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

    mean urdu mein teach kiya kry

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

    maam i find your voice very cute

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

    Her voice

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

    Chummi code.

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

    teacher plz urdu bola kry

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

    Thank you so much for this video.

  • @AnujKumar-qm4cc
    @AnujKumar-qm4cc 2 месяца назад

    Thanks mam 👍

  • @harshitsharma-tp7wc
    @harshitsharma-tp7wc 2 месяца назад

    thank you