Wow, your teaching style is a piece of cake. Thanks for watching from Ethiopia.
@ReelLearning12 жыл бұрын
Thanks! Keep watching.
@mostafamohamed7178 жыл бұрын
finally, a voice over that's not Indian
@davidnovosardian68487 жыл бұрын
i like indian accent better
@TheWarfare077 жыл бұрын
fuck indian accent.
@Wooah17 жыл бұрын
Seriously, I can't stand getting an indian accent on a programming video, even if it's the most reliable and best info being given, I'll still pass.
@fabiboiii7 жыл бұрын
Ikr, it sounds so mean but at the end of the day you have to choose videos you can actually follow and understand
@GStar17 жыл бұрын
Lol guys I'm Indian. But ya I'm fed up too with those videos. But they are legit at least.
@victoriadathan26753 жыл бұрын
Thanks so much! This helped me understand linear search more clearly via code. Currently learning data structures & algorithms for potential jobs. C++ is my go-to language; it really helps me think.
@smokestrong10007 жыл бұрын
i'll spend all day trying to figure this stuff out in my book. I look watched this and no confusion got it instantly. Thank you
@balfaboy12 жыл бұрын
Hi X, Seek out big-O notation...I believe the function 0(N) will get you going in the right direction...the algorithm grows linearly in direct proportion to the size of the data set. You can take a multiple of your set size, say 10, and test the speed of that, then figure the multiple of [1000000] and the big-O funtction definitions should help you determine the actual speed.
@alexandre8358211 жыл бұрын
Very helpful! Thank you. One thought. In determining if the number was found or not, you used if (results > 0). This would only work if the array was unsigned int. If the array consisted of negative numbers, it wouldn't work. so wouldn't it be necessary to declare the array appropriate? I guess in the case, you can check if the result !==-1, return "Number was found."
@Tnguy8305 жыл бұрын
You explain better than my professor
@terryalleyne84554 жыл бұрын
H,i how could you construct a program to perform a linear search for a string within another string not using the find function. all of the examples use int which is fairly easy.
@adeniyiladenegan74502 жыл бұрын
Hi I am really searching for this and I hope to see it someday soon. what if I have to enter a few characters and the search returns all similar texts or sentences in a stored array Please Terry if you find it, do let me know here, I will be on the lookout.
@Handleme236 жыл бұрын
What if you didn’t know what was gonna be in the array, how you initialize it
@frankymaca6 жыл бұрын
you use a vector, and every variable that you get you do push_back for inserting it in the vector
@ronaldismyname5 жыл бұрын
You shouldn't have to pass in the size of the array as an input parameter,, you can calculate that in the function.
@balfaboy12 жыл бұрын
Great tutorials ! Thank you so much for aharing the knowledge and great manner of actually "teaching" the subject matter.
@user-nk2jk1bp6j6 жыл бұрын
How would you do a multi-dimensional array search?
@kevinzhu45708 жыл бұрын
Have a question, why "size" doesn't need to declare first in somewhere before you put it in the function?
@varinderbrar98439 жыл бұрын
You do a very well job brother of explaining the concept, keep it up!!!
@Persian7719 жыл бұрын
he thanks for your videos.could you make a video about the Big O notation and complexity. I really don't understand what they mean and how I can use it.
@fahadmirza89 жыл бұрын
+Persian771 : Check Derek Banas's video abt Big O Notations
@haxor2ez8424 жыл бұрын
Clear,Precise and perfect ;) Will watch your other videos as well
@Il0vestage12 жыл бұрын
Thanks for making linear search easier for understanding :D keep up the good work ^^
@saramillett2064 жыл бұрын
I must thank you for the great explanation you did in this video. Thank you so much.
@iteaahormaАй бұрын
If you. Can this tools search mode program search anye thins ??
@_unknown7_7 жыл бұрын
Thank you very much The same program was written in a complex manner in my textbook but you have made it pretty easier for me
@carlalendor415011 жыл бұрын
Great video, clarity in explanation and design,,,,
@AhmedAlbadwi12 жыл бұрын
thank you very much the way you explain things is simple and very helpful
@xadekpl12 жыл бұрын
Videos are great ;)) .... But iam wondering how long will it take for a modern pc to loop through an array[1000000] using a linear search to find a specific number .. ??? Any idea ?? ... Is there any way to calculate time that linear searches will take ??
@komronvalijonov34855 жыл бұрын
Thanks a lot ! The clearest explanation ever found.
@kunz39868 жыл бұрын
How can i do this with strings instead of numbers
@psohn4208 жыл бұрын
string instead of int, getline cin.
@opgg7368 жыл бұрын
still need that code?
@edilsongiachini58476 жыл бұрын
use templates or standard library #include
@ilifahmeeda145911 жыл бұрын
thank you very much, this coding really helped me a lot through out my assignment.with clear explanation. keep it up
@wongyuenzeng12 жыл бұрын
You're very clear with what you're saying and doing :D Thankyou!
@EduardoKicks9 жыл бұрын
how do i search an array with random numbers
@fahadmirza89 жыл бұрын
+KoolKid : Isn't he doing that already? Looking for a number in a array which doesn't have any order. Unless you meant something else?
@EduardoKicks9 жыл бұрын
Fahad Mirza i figgured it out and yea, but i made an array with random values in it. now im trying to figure out instead of -1, it returns the index of the value closest to the value. So lets say there is a random value of 54 in the array, and it is in the 3rd index, the user searches for 53 and it will return the closest value in the array to 53.
@EduardoKicks9 жыл бұрын
Fahad Mirza if you know how to please help.
@fahadmirza89 жыл бұрын
+KoolKid: here is your code: #include #include using namespace std; int main() { int array[10] = {11,51,17,21,14,31,16,91,10,81}; int userValue; int index; int distance; cout > userValue; for(int i=0; i
@anthonystevens69993 жыл бұрын
Best video about this topic! thanks :)
@worldonawrist7 жыл бұрын
Easy to follow and neatly presented. Thanks!
@soma78_11 ай бұрын
Thanks your explaination simple and easy ❤
@Gagan_salwan6 жыл бұрын
6:34 is the time when you should stop watching or everything he say will go over your head
@marktate26835 жыл бұрын
Then how will you know how to apply the source code -_- gotta learn more than just the explanation of how it works in order to be a functional programmer.
@harshi6340Ай бұрын
Im so thankful for this video :-:
@youssofprogrammer75462 жыл бұрын
thanks very much I love your videos
@dylanrichardson5966 жыл бұрын
Does anyone know how to search a .txt file using a linear search??????????????
@siammureed23916 жыл бұрын
how we make and call a function .
@bermudatriangle944 жыл бұрын
dude u nailed it!
@VincePlaysChess5 жыл бұрын
very nice video. clear and easy to follow. Thank you!
@Dog69691112 жыл бұрын
More please, I love these.
@najlahanani6594 жыл бұрын
Why i got errors
@attymathodie70546 жыл бұрын
wow.. I like this song..
@matusaldebebe50728 жыл бұрын
it is good explanation thank you very much and make linked list aligorthms just like this
@samanawais43534 жыл бұрын
Search engine p project bna dein plz
@rsdntevl7 жыл бұрын
better than paid udemy courses
@MdAshik-li6jc8 жыл бұрын
very nice tutorial
@alfredcalleja4508 жыл бұрын
Brilliant! Thanks very much.
@MoffGaming9 жыл бұрын
Excellent. Thank you.
@pournimathakare22797 жыл бұрын
is this coding valid for turbo c++
@ravadirajkumar4773 жыл бұрын
Thank you so much...................................
@mwezi104 жыл бұрын
This is good stuff by ReelLearning
@lelouchiha50892 жыл бұрын
Thank you so much
@امینجمالی-خ9ص3 жыл бұрын
Thank you
@hadeelalqatabri75467 жыл бұрын
thank u so much ..awesome
@sajmon94905 жыл бұрын
thanks bruh
@johnnyverse2573 жыл бұрын
#include #include using namespace std; int main() { int access = 0, searchnum, arr = 6, num, answer; int nums[] = {4, 8, 15, 16, 23, 42}; cout searchnum; for(int i = 0; i < arr; i++){ num = nums[access]; if(nums[i] == searchnum){ answer = i+1; } }if(answer
@badrelkholy80362 жыл бұрын
Seems like I'm a bit late
@abhishekverma999911 жыл бұрын
thank you very much sir :)
@muhammadfarooq692410 жыл бұрын
u r awesome
@heshammostafa344610 жыл бұрын
(Y) (Y)
@muhammadafzaalkhan92776 жыл бұрын
great
@nouraaliabuhlega40236 жыл бұрын
god i love it ,, thank god not indian
@cookiesandcode56423 жыл бұрын
gg
@edilsongiachini58476 жыл бұрын
it's very good but it can be more compact and fast.
@varinderbrar98439 жыл бұрын
You do a very well job brother of explaining the concept, keep it up!!!