Search in Rotated Sorted Array

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ม.ค. 2025

ความคิดเห็น • 26

  • @koushalnmusic
    @koushalnmusic 2 ปีที่แล้ว +7

    EVERY ELEMENT IS EITHER LEFT SORTED OR RIGHT SORTED !! this explanation made it easy for me to understand the algorithm, Thanks a lot for all the work you've been putting into making these videos.

    • @mayankmudgal1728
      @mayankmudgal1728 ปีที่แล้ว +1

      Exactly! I have been scratching my head for hours. This is the ONLY explanation which made sense

  • @opsumon1569
    @opsumon1569 11 หลายเดือนก่อน +2

    Wow ! Its Very easy after this video . Thanks Di

  • @shatrudhankumar7824
    @shatrudhankumar7824 ปีที่แล้ว +1

    Awesome!!!
    You are beyond imagination who can convert complex things into easy one.

  • @venkatakalyan4953
    @venkatakalyan4953 2 หลายเดือนก่อน

    Great and Crisp explanation.

  • @tanim913
    @tanim913 2 ปีที่แล้ว +2

    most underrated explanation, thanks 😊

  • @poojapawar-s3i
    @poojapawar-s3i 2 ปีที่แล้ว

    thank you so much. This is the best explanation on binary search in rotated sorted array.

  • @oneandonlyflow
    @oneandonlyflow 2 ปีที่แล้ว

    one of the best explanations I've seen, thank you!

  • @RockStar-Siblings
    @RockStar-Siblings ปีที่แล้ว

    excellent explanation and ur making coding so nteresting, thank u very much

  • @chintamanipala
    @chintamanipala ปีที่แล้ว

    every array have 2 part either left sorted or right sorted. first we need to check it if left side part is sorted and if the target value is lies between that range that means we have to eliminate the right side otherwise we have to eliminate left side . this part is clear my whole doubt. thanks mam for making this video.

  • @chickentowel-ek
    @chickentowel-ek ปีที่แล้ว +2

    Minor comment on line 19 and 31. In the condition, it doesn't need to be (....

  • @code_lover2889
    @code_lover2889 3 ปีที่แล้ว

    Amazing explaination ❤️

  • @omkarmandias8166
    @omkarmandias8166 10 หลายเดือนก่อน +2

    Did you do your schooling at AECS Kalpakkam.

    • @probabilitycodingisfunis1
      @probabilitycodingisfunis1  10 หลายเดือนก่อน +1

      Yes!

    • @omkarmandias8166
      @omkarmandias8166 10 หลายเดือนก่อน

      @@probabilitycodingisfunis1 You were of 2016 batch ..... I am junior of 2018 batch .... abhi bhi yaad hai u were the captain of the school..... very happy that ur sharing ur knowledge through utube...

    • @probabilitycodingisfunis1
      @probabilitycodingisfunis1  10 หลายเดือนก่อน +1

      @@omkarmandias8166 good old days!! AECS times were best!! thanks, wish you the best too !

  • @sushmitakumari8252
    @sushmitakumari8252 ปีที่แล้ว

    finally i understood here. thank you so much. 🙂

  • @mayankmudgal1728
    @mayankmudgal1728 ปีที่แล้ว +1

    very cool!

  • @aaravanand2325
    @aaravanand2325 หลายเดือนก่อน

    Thankyou so much !

  • @vaibhavsharmaiiitu9319
    @vaibhavsharmaiiitu9319 ปีที่แล้ว

    Thank you really understood

  • @Rgpv_Official
    @Rgpv_Official ปีที่แล้ว

    great expl

  • @kushalshukla444
    @kushalshukla444 2 ปีที่แล้ว

    but how [1,3,5] is rotated array cause the pivote index is less than k

  • @RishabhSharma-tp7rs
    @RishabhSharma-tp7rs 2 ปีที่แล้ว

    mam everything is right but while running it is giving error;
    int search(vector& nums, int target) {
    int left =0;
    int right =nums.size()-1;
    int mid=left+(right-left)/2;
    while(left

    • @Rgpv_Official
      @Rgpv_Official ปีที่แล้ว

      return -1 above the last } bracket

  • @kushalshukla444
    @kushalshukla444 2 ปีที่แล้ว

    nice exp :)