Binary Search Examples | Unsuccessful search | Design & Algorithms | Lec-14 | Bhanu Priya

  Рет қаралды 155,900

Education 4u

Education 4u

6 жыл бұрын

Examples of Binary search on sorted array ( Unsuccessful search)

Пікірлер: 67
@ramithapeiris8495
@ramithapeiris8495 Жыл бұрын
Very clear to understand the explanation. Thankyou very much for creating this video :))
@srikanthb4387
@srikanthb4387 4 жыл бұрын
Very good explanation, thank you very much
@user-sf8fb9pn7u
@user-sf8fb9pn7u Жыл бұрын
Hi am I teacher and I’m just giving a review and I think that this teaching was nice and a good explanation but there was a allot of stuttering and was a lot of uh uh but over all the teaching was nice I was watching this vid because I wanted to teach my students about this ch and they understood it very well u showed the vid and they also liked it… but over all great teaching👍🏻👍🏻
@user-xq9iy3gw9g
@user-xq9iy3gw9g 7 ай бұрын
Ur teaching was vry good and clear cut ans.... Thank u for gd teaching
@abhijithlenin2879
@abhijithlenin2879 5 жыл бұрын
Thanku madam for your great information..
@mohammadshafayethaydar1652
@mohammadshafayethaydar1652 5 жыл бұрын
Thank you so much for explaining the unsuccessful search.
@RajGupta-pw3wh
@RajGupta-pw3wh 3 ай бұрын
what you are doing bro i saw your comment after 5 years later..you can reply me
@phoenixyt1771
@phoenixyt1771 Ай бұрын
.
@itz_adithya9124
@itz_adithya9124 2 жыл бұрын
Thank you so much
@karunachavan2137
@karunachavan2137 2 жыл бұрын
Mam thank you so much
@VerinderSingh5911
@VerinderSingh5911 Жыл бұрын
Very helpful 👍
@fredinaluokose170
@fredinaluokose170 3 жыл бұрын
tthank you so much
@shivashankaramalakanti2884
@shivashankaramalakanti2884 Ай бұрын
excellent akka
@satya9263
@satya9263 3 жыл бұрын
Awesome mam tq
@ahonarupanthi7562
@ahonarupanthi7562 2 жыл бұрын
is there something wrong? Because, in last array if 8
@ethiolyrics3705
@ethiolyrics3705 4 жыл бұрын
thank u
@TECHCONEKANNADA
@TECHCONEKANNADA 3 жыл бұрын
Thank u
@RachealNannozi
@RachealNannozi 4 ай бұрын
Thanks
@papibrawn9363
@papibrawn9363 2 жыл бұрын
keep it up girl it is good explanation
@user-uc9qo1ct6w
@user-uc9qo1ct6w 11 ай бұрын
Tq mam😊
@shivarajh2167
@shivarajh2167 5 жыл бұрын
Well teaching
@sureshponna8080
@sureshponna8080 4 жыл бұрын
Tq madam
@hinakhan1617
@hinakhan1617 5 жыл бұрын
Brilliant
@ghosst1282
@ghosst1282 Жыл бұрын
God bless
@syednaveeth9825
@syednaveeth9825 2 жыл бұрын
Start < end this is unsuccessful search I found is this right ✅
@denwilfernandes5699
@denwilfernandes5699 4 жыл бұрын
Good One
@unknownboy-rh1xx
@unknownboy-rh1xx Ай бұрын
What happens if we search element is 12 it between in last step 11 and 12 ,and our last middle search 11 is middle number then how we calculate
@TxK1
@TxK1 4 жыл бұрын
plz do a time complexity calculation video you have only explained space complexity
@ahamedthilsan2700
@ahamedthilsan2700 5 жыл бұрын
is there have any linear search videos link
@Talentzone_Kundapura
@Talentzone_Kundapura 3 жыл бұрын
Nicee
@samriddhsharma9308
@samriddhsharma9308 4 жыл бұрын
MAM ONE QUESTION HOW ARE YOU TAKING KEY ARE YOU ASSUMING ON YOUR OWN OR THERE HAS TO BE FOLLOWED SOME PROCEDURE FOR TAKING KEY, WAITING FOR YOUR RESPONSE SOON TO HELP ME CLEAR MY DOUBT.
@sanketchordiya4370
@sanketchordiya4370 4 жыл бұрын
'Key' will come in question
@samriddhsharma9308
@samriddhsharma9308 4 жыл бұрын
@@sanketchordiya4370thankyou so much
@likhithakommana4658
@likhithakommana4658 3 жыл бұрын
@@sanketchordiya4370 If not coming in Question, then what we'll do??
@sharath488
@sharath488 2 жыл бұрын
@@likhithakommana4658 pray to God
@AnkiitOp
@AnkiitOp Жыл бұрын
@@likhithakommana4658 atta hai bhai 😅
@sasimadhu3496
@sasimadhu3496 2 жыл бұрын
Mam Binary search algorithm ki meru chapina successful and unsuccessful eampls exms lo rayacha...mam
@thanuja5128
@thanuja5128 Жыл бұрын
Linear search
@nandeeshwarreddy3604
@nandeeshwarreddy3604 2 жыл бұрын
Key value ela decide chesthunav madam mana istama adhii
@thanuja5128
@thanuja5128 Жыл бұрын
Explain linear search mam
@shaikhibza8596
@shaikhibza8596 3 жыл бұрын
Mam linear search video i want mam please mam
@siddharthadubey552
@siddharthadubey552 Жыл бұрын
Mam if key value is 8 means 56 and mid value is 4 means 32 so 56> 32 So mid +1 hoga I think plz reply @Education 4u
@nickhlope5076
@nickhlope5076 Жыл бұрын
Bro key value means the actual value you want to search for, not the index position of the value. We want to search for the number 8, not search for the value at the 8th index(56). So no, key value 8 does not mean 56. The value we are searching for is 8 and the value at mid is 32. Therefore, 8 is less than 32, thus end = mid -1
@subhamroy5619
@subhamroy5619 Ай бұрын
a=[5,7,9,13,32,33,42,54,56,88] z=34 low=0 high=len(a)-1 while low
@prajothnaik9709
@prajothnaik9709 Ай бұрын
3:00
@techyhaseeb8237
@techyhaseeb8237 9 ай бұрын
How key value= 8
@HYD-
@HYD- 3 жыл бұрын
How to take a key value
@shaikhibza8596
@shaikhibza8596 3 жыл бұрын
Key value given in question only in question itself it will be given
@uduthabhaskar8536
@uduthabhaskar8536 2 жыл бұрын
How to take key value 8 is not clear
@sreeram6038
@sreeram6038 Жыл бұрын
How key is 8?
@yisahkelvin1532
@yisahkelvin1532 8 ай бұрын
How did she understand this topic, she explains as if it is very simple
@umarchandio9921
@umarchandio9921 3 жыл бұрын
Mam ne to 2rings pahiny hvi hn both hands😀😀
@Ammuammu12818
@Ammuammu12818 Жыл бұрын
8
@AnkiitOp
@AnkiitOp Жыл бұрын
3:00 that sound 😅🤦
@gurudattasahoo2302
@gurudattasahoo2302 3 жыл бұрын
is the key 8 ?
@exhalttheejesus8999
@exhalttheejesus8999 2 жыл бұрын
Yes
@SakshiLohar-qy1ph
@SakshiLohar-qy1ph 9 ай бұрын
Key =8 Hi kyu
@kaneezzahra4684
@kaneezzahra4684 2 жыл бұрын
Mam agr english bolny me dikat hy tu na bolen... na banen itni english man... simple hindi bol len
@vs8645
@vs8645 Жыл бұрын
Pgl hai kya tu
@siddharthadubey552
@siddharthadubey552 Жыл бұрын
Mam if key value is 8 means 56 and mid value is 4 means 32 so 56> 32 So mid +1 hoga I think plz reply @Education4u
@nushratjahannuhachowdhury9623
@nushratjahannuhachowdhury9623 Жыл бұрын
She is searching for number 8 not index 8 …
merge sort algorithm
9:09
Education 4u
Рет қаралды 157 М.
MISS CIRCLE STUDENTS BULLY ME!
00:12
Andreas Eskander
Рет қаралды 14 МЛН
Little girl's dream of a giant teddy bear is about to come true #shorts
00:32
아이스크림으로 체감되는 요즘 물가
00:16
진영민yeongmin
Рет қаралды 62 МЛН
Now THIS is entertainment! 🤣
00:59
America's Got Talent
Рет қаралды 39 МЛН
Linear Search in Data Structure by #Naina Mam | Time Complexity
12:28
Gate Smashers
Рет қаралды 236 М.
Binary Search Algorithm | Design & Algorithms | Lec-12 | Bhanu Priya
10:42
Linear search vs Binary search
4:16
Techdose
Рет қаралды 196 М.
Introduction to Binary Search
16:25
Lalitha Natraj
Рет қаралды 142 М.
2.6.1 Binary Search Iterative Method
19:36
Abdul Bari
Рет қаралды 777 М.
Merge sort example | Design & Algorithms | Lec-16 | Bhanu Priya
6:27
MISS CIRCLE STUDENTS BULLY ME!
00:12
Andreas Eskander
Рет қаралды 14 МЛН