It's so cool that these top schools release courses like this one online free of charge. I may not get a chance to go to MIT or Stanford, but I'm sure as heck going to learn as much as I can from them. Thanks!
MIT Tuition is $49,892/yr $24,946 /per semester which is about $4,989.20 per course. Semester runs 15 weeks. So that equals to about $332.61 per week.. I'd say this course runs twice a week, so this day of class cost $166.30, and you got it for free. Now that's what it cost.. what it's worth is much more. Moral of the story. Be thankful to have such information at our fingertips. FREE MIT courses on Algorithms?!? How awesome is that!?
True, but just to point out, that $166 also includes the ability to talk with peers, professors, teaching assistants etc. It might also include the usage a cluster or supercomputer that MIT runs. And such free education is only good for some courses like Computer Science or theory knowledge in most of the other disciplines. For example, if you are learning electronics, you can get free theory knowledge from such videos, but you wont get any practical knowledge about soldering or circuit design etc coz you would need real hardware. Same applies with biology etc. However, we should indeed be grateful for such videos.
@@blasttrash It's worth noting that students are also paying this money for a qualification and proof for potential employers that they possess all of this knowledge.
@@blasttrash EE student here, bought components, soldering iron, and multimeter on Amazon Saw free lectures on UA-cam and instructables Knowing what the knobs on a osciliscope do before touching it is great, most in my class had no clue(Myself included) But ultimatly expirience of any kind is king, especially self taught You may not have a supercomputer, but you defenitly got the knoledge and will to learn Some in those classes don't even have that
@@slackerengi2401 True its all about will. I am from ECE too, although I graduated long back and I dont even know how to solder stuff. I can barely remember the difference between series and parallel connections on a bread board. I work in CS field now, so all is good I guess. :)
I failed math in high school and over 20 years later actually enjoyed watching and learning from this. I’ve been interested in algorithms and appreciate MIT sharing this class session.
girl you are not alone. but i am thinking its because its now that you can understand what you can do with mathematics. in our days we were taught math and physics like robots. We had to shove everything inside that head or get whippings.
Math is something one can learn at any age , yes it can be difficult but with propper material this challenge we call education can become simple when all the steps are clear and at any given time the next step is obvious . Join a community online , that is much better than self learning by its self
@@juanmoscoso0 I doubt that. She did Andrew Ng's deeplearning specialization, was familiar was supervised, unsupervised and semi-supervised learning from work.
This is still the best on-line introductory course for algorithms I am aware of. Coupled with programming exercises, it would make legendary content for MITx and edX.
Thanks MIT for the course. I can now understand things very easily as a correspondence student, it's very hard to understand things, but MIT open course-ware has made life and learning very easy.
I actually passed the equivalent course to my university by watching these videos. I also scored an almost perfect score! These videos are a goldmine! Thanks a lot for providing these courses to the general public.
Just finished 6.0001 and 6.042J, now starting 6.006, just as a head start before I join university next year. Really grateful to MIT to provide these lectures for free.
you will have a great understanding already going into uni. Good luck on your studies. I wish I had dived into these courses when I started my programming journey.
Don't worry about peak finding algo. If u r confused about binary vs random for 1d peak finding or global peak vs relative one, just learn that this video is for introduction and give students with non programming background a feel of algorithms and a little of divide & conquer. Hope u watch the whole playlist and i can assure you there are no such confusions in later videos! Thanks MIT for the amazing playlist
I feel really dumb about this problem. I don't understand how it's log(n). I figure you need to check around you on both sides to know if you're a peak. But also you can't eliminate more elements than the ones directly around you as potential peaks because the array is unsorted. How are we cutting potential solutions in half on every check? I've understood some DSA concepts, but even this first class just left me confused lol. Edit: Ah I misunderstood the problem. We're looking for any peak not the highest number. We know that if a number is higher we can jump into the middle of that side of the array and if the number to our left is higher than there must be a peak between the one we started with and the one we just chose. If the number on the right is higher instead we just keep cutting through. Worst case scenario the numbers just increase constantly in one direction and we eventually find the only peak on the extreme right of or left of the array.
@@das6109 That was exactly my concern lol, from first go it looks like we may skip a peak on the side we're skipping, but seems like if A >= B, then there is a guaranteed peak on side which includes A :)
I cried. Just visit the link in description and see how wonderfully everything is arranged for us to learn. Thank you team MIT. I cannot explain what this means to a student like me from small indian village. It's a dream come true. Best gift for life.
hey bro i have just learned all the basic and important things on java..can you suggest me from where i can study and concepts of dsa..plz help me i am about to sit on my college placements
I seriously envy the professors at MIT. The profs at my university can't hold a candle to their organization and ability to simplify difficult concepts.
I just wish i had find this earlier in my career, but back then I was not ready to understand how blessed I am to access this. MIT is dream but I can access such courses at my fingertips now!!
Prerequisites A firm grasp of Python and a solid background in discrete mathematics are necessary prerequisites to this course. You are expected to have mastered the material presented in 6.01 Introduction to EECS I and 6.042J Mathematics for Computer Science. If you have not taken and been successful in each of these subjects, please speak with a TA or professor before enrolling. We do allow students who have equivalent, other experience with the material described above to enroll, but with the firm understanding that mastery of this material is assumed and that course staff will not feel obligated to cover it or to help students who are struggling with it. 6.006 is a 12-unit (4-0-8) subject and serves as a Foundational Computer Science subject under the new curriculum. It is a direct prerequisite for 6.046 Design and Analysis of Algorithms, the theory header.
Bored Chinese Even though this class uses Python you could still learn something. Really depends on your ability to grasp and apply the lessons to the C language.
Hi Could you please provide the link or direct to proper links for the prerequisite courses. I searched in ocw.mit site but there are 4 courses(Spring 2005/2010 and Fall 2005/2010) with 6.042J as title.
Hello, I wanted to ask If I focus on Java programming and I would like to have a better grasp of algorithms and data structures, in order to help me in Programming, is this course appropriate for that or should I look for something different ? Thank you.
I remember taking an intro to Algos class as an undergraduate way back when. And I remember not having the slightest idea how to get O(logN) for the peak finding problem. And then just being in total shock when some student from the back answered it the first day, like at @24:52, thinking that kid was the next Dijkstra or Primm lol. I'm now in my 30's grinding away at leetcode and reading CLRS for interviews. And now that I think about it, that kid at @24:52, was already doing what I'm doing now well before he even took the class. Start while you're really young!
@@utkarsh_108 software engineering as in dumb code, probably not. But there will always be a need for people that can solve problems and put that into code as a tool or final product
@@ViktorKishankov All you need to do is find ANY peak in the array. The search starts in the middle, if the value is rising to the left, there must a peak somewhere on the left, same for the right. Otherwise, you must already be on a peak. Imagine you were on a mountain looking for a peak, you would head in the direction where you have to walk uphill. Binary search works because it is any peak, not the greatest peak.
this is wonderful. Not having to depend on incomplete resources across the internet and then coming across the complete course taught by the BEST is wonderful. Please do put more such courses and help those students who can't afford to have a quality education for one or the other reason, thank you
What a time to be alive for having such high quality course for free, free education is the best thing that can happen to humans, learn from each other for free, i understand it's difficult to have free education or anything really, because those people need to be payed to live also, but if we can find a way to have as much free education as possible it's just incredible and highly valuable for humanity, and MIT are doing a great job by contributing to this project/idea, thank you
@@mohammedjassim9250 Yes you can...I recently watched this lecture __ua-cam.com/video/JPyuH4qXLZ0/v-deo.html This lecture is about algorithm analysis. Our professors also used this technique. You understand what i'm taking about. If you complete algorithm and data structure from here & understand concept fully. I'm sure you'll find it very helpful no doubt. They also provided textbook that is available for free(.pdf)
I think the professor have not explained the implication of the 1D and also 2D algorithm. The key is that for any 1D or 2D array there is a largest element(>= any other) and thus must have a peak. (Theory 1) However, in an array the sub-array's peak may not always its parent's peak if the largest element is on the edge and has a bigger element next to it. (Case 1) To find a peak in a sub and at the same time avoid Case 1, we must choose a larger side to ensure that even if the largest value is on edge, it is still larger than its boundary in the parent array. This is also why in 2D search we want a global maximum. We want to ensure that even if the max is at the boundary, it is still larger than the any element in the boundary column containing the global max we found. And thus the global max in the larger side must contain a peak.
One of those best initiatives I have ever come across. It would create monopoly in the Indian market over all ed-tech platforms and offline coaching tuitions. Only a matter of awareness. Never heard a negative review about this.
I wish my University lecturers were so well spoken and were more interested in getting me interested in conveying excitement about the topic instead of just getting through the lecture...
I wish the colleges and universities here had teachers like this man. They all have thick accents and do not explain in detail like this instructor. No wonder MIT has the rep it has. wow.
I needed this. My current algorithms class is a joke. For the 1st 6 weeks professor, on average, cancelled class once a week (we have classes 2x a week). Half of the 1 class we meet up, is him telling stories/making jokes. Then the whole corona virus thing hit, and we are now doing lectures online, where the first week he cancelled a class again. His current online lectures all choppy because I think he is using a laptop webcam to record him writing on a whiteboard. The quality of the videos are 240p at best, and can drop even worse at times. Looking at the syllabus, we are 4 weeks behind schedule.
I really appreciate this free of cost content, because people who were not much concerning about their academics during their college days also get a chance to revisit(of course I am not speaking about MIT alumni)
A whole course focused solely on algorithmic analysis?! With two amazing professors co-lecturing?! This is why MIT reached is the global leader in post-secondary STEM education.
Finally I figured out why he searches for a global maximum in the column instead of a local peak. It is because the peak will be guaranteed in case of a row with a number which is already a max number in a column. In all other cases, it will not be guaranteed. I think he left this part so that the students may think about it. In the lecture notes, he has asked this question: "What if we replaced global maximum with 1D-peak in Attempt #2? Would that work?" The answer is that it won`t, because the peak won`t be guaranteed. The explanation of this is that a largest element in a 1D array is definitely a peak.
+Rohit Jain Can you pelase explain step-by-step what's happening? So 1. We pick a middle column and find the global max( this guarentees that there is a peak in that specific column?) 2. Then what? You comepare the values to the right/left of that specific peak?
+Toiletwifi 1. We pick the middle column and find the global max in that column. Lets call it x 2. We compare x to its left cell and right cell. 3. If both left and right are smaller than or equal to x, then x is the peak, otherwise we proceed to step 4 4. if left cell > =x, then we now perform the same operation on the grid on left portion of column containing x otherwise the right portion. 5. We peform this operation recursively, at some point, either we will find a peak in the process on a x or we will be left with only one column. 6. If we are left with only a single column, then the global max of that column will be a peak. Essentially what we are doing is: 1. We are ensuring that we are always narrowing our scanning area by half in each iteration, always moving towards the side containing a number greater than the max of middle column. 2. This ensures that either we get a peak in the process or we are left with a single column which has atleast one value that is >=its adjacent values (because it is greater than the global max of the adjacent columns.) 3. Now before we were left with a single column in the end, we now know that this column has a value (say y) larger than the global max of the adjacent columns . So even if there is a value greater than y in our single column, it would surely be greater than its adjacent values and is therefore a peak. This last point is most crucial to understand, and can be understood more clearly with help of self designed examples and following this algo.
Rohit Jain Thanks for the explanation bro! Sorry I just started coding/algos, things come slow to me. I understand everything up to step 3. So I'm still a bit confused. For step 4. let's assume x =10 and left cell=20 (assuming left cell > =x), we are now in that coloumn containing 20. Now what's the next step. We check that WHOLE coloumn ( the one with the 20) and find a global max. And then look to left and right cell. THen repeat until we find a peak? So we have to find a global max in every coloumn ( assuming step 3 doesn't work out). Please explain in baby words/example, how this will guarentee a peak. Sorry once again for my dumb understanding question
When I read the comments I saw there were some people with a confusion about peak finding.I think It's better to know that he was not finding the "Highest Peak". He was just finding "A Peak". correct me if I am wrong.
this lecturer is excellent and having had at least 20 different uni lecturers over the decades i should know; there are some shocking ones which oddly are the nicest characters ...
Watching this in quarantine... so much better than Waterloo’s voice-over slides approach for giving lectures during corona. Kinda salty that I’m paying Waterloo just to get better content for free online
My master said : " GREAT TEACHER WILL ALWAYS MAKE GREAT STUDENT " So , i'm not great student , and i blame to my teacher for this .. but this is outstanding knowledge for free , wow .... Peace from Surabaya , Indonesian ..
computer science undergrad major core courses: calculus, linear algebra, discrete mathematics, data structure, assembly language, operating systems, and algorithm,...etc.
Programmers who are confusing with this. Look at 22:12 ---> Both the sides are decreasing. It may have more than 1 peak which means its a continous streak of mountains and we need to find any peak.
"Peak finding" is just a fancy name for finding the max value of an ANALOG continuous function. It won't work for a DIGITAL or discrete function. Only useful for processing some things.
Well, knowledge of basic algorithms and data structures is definitely a must for every programmer, but its just a small part of "a bigger picture". You should also be familiar with Web technologies, programming languages, frameworks etc. Also remember that "technology aspect" wont make your website successful if you do not have a GOOD IDEA (which targets people's needs), marketing and promotional side etc. Good luck :)
Thanks for featuring this class. I need to know algorithms for my current computer programming learning in Python, Artificial Intelligence etc. I listen to these classes to reinforce my current knowledge.
Took some time to realize why he found the global max. Try for A = [ [12, 15, 16, 27], [10, 8, 3, 28], [9, 7, 25, 26], [8, 6, 2, 3] ]. In first iteration j will be 2nd column of A, in next iteration j will be 3rd column of A, and in final iteration j will be 4th column of A. Answer = 28. Realize, as we move from 2 --> 3 column, the condition checked was 15(max of 2nd)
It might seem counter-intuitive.. but it works.. Using approach similar to binary-search, only gives an indication of which direction to proceed in... You, eventually, might not end up at the peak your previous binary-search comparison was indicating to... Its like saying that, 'if at i, the array is sloping up towards left, then there must 'definitely' a peak somewhere towards the left.. whereas its 'possible' that I might not find one if I go towards right.. So, now lets look at [left/2] ...' ...and so on.
As 25:30 the professor states that he is not looking for THE peak, he only wants to find A peak. It does not matter which peak he finds, just find one. It should be understood that the algorithm he is discussing is not intended to search through a sorted list. It's intended to search through an unsorted list of "real-world" values. The lists this algorithm is for will have one or more peaks of which he is only concerned with finding one arbitrary peak.
binary search itself is not being used but the technique of splitting array into halves on every next step is being used (which is the same technique that binary search uses) + the problem is to find 'any' arbitrary peak
Murali Mohan You either did not watch the video or did not understand what was explained in the video. That IS what the professor is telling the students to do. The algorithm he is describing is NOT looking for the highest number in the set. He is only looking for a peak relative to a random starting position. As the professor states early in the video, this class is an introductory course in programming and algorithm design. It is not intended for students who already have experience with programming. It is intended for students who have no experience. The example he provided is intended to give students new to programming a fundamental idea of how an algorithm works.
You may feel divide and conquer will not work because the array is not sorted. but you only need to look at the question, the definition of a peak and an example to convince yourself that it actually works
It's so cool that these top schools release courses like this one online free of charge. I may not get a chance to go to MIT or Stanford, but I'm sure as heck going to learn as much as I can from them. Thanks!
sellout
MIT gets billions of government funding. Billions.
I paid for my MIT education in cash!
Its like real life.. you can go in most big university classes, sit down and learn for free... (as long as there's an open seat)
ATXpert sellout because hes sharing knowledge?
MIT Tuition is $49,892/yr $24,946 /per semester which is about $4,989.20 per course. Semester runs 15 weeks. So that equals to about $332.61 per week.. I'd say this course runs twice a week, so this day of class cost $166.30, and you got it for free. Now that's what it cost.. what it's worth is much more.
Moral of the story. Be thankful to have such information at our fingertips. FREE MIT courses on Algorithms?!? How awesome is that!?
True, but just to point out, that $166 also includes the ability to talk with peers, professors, teaching assistants etc. It might also include the usage a cluster or supercomputer that MIT runs.
And such free education is only good for some courses like Computer Science or theory knowledge in most of the other disciplines. For example, if you are learning electronics, you can get free theory knowledge from such videos, but you wont get any practical knowledge about soldering or circuit design etc coz you would need real hardware. Same applies with biology etc.
However, we should indeed be grateful for such videos.
@@blasttrash It's worth noting that students are also paying this money for a qualification and proof for potential employers that they possess all of this knowledge.
Goodwill hunting
A library card goes a long way
@@blasttrash
EE student here,
bought components, soldering iron, and multimeter on Amazon
Saw free lectures on UA-cam and instructables
Knowing what the knobs on a osciliscope do before touching it is great, most in my class had no clue(Myself included)
But ultimatly expirience of any kind is king, especially self taught
You may not have a supercomputer, but you defenitly got the knoledge and will to learn
Some in those classes don't even have that
@@slackerengi2401 True its all about will. I am from ECE too, although I graduated long back and I dont even know how to solder stuff. I can barely remember the difference between series and parallel connections on a bread board.
I work in CS field now, so all is good I guess. :)
The lecture starts at 0:22.
Course overview : 2:51
Course content : 8:37
First problem (Peak finder) : 15:31
"Straight forward" algorithm : 18:53
"Divide & Conquer" (a recursive) algorithm : 27:42
Second problem (2D Peak finder) : 36:16
Greedy Ascent algorithm : 37:30
"Divide & Conquer 2D" algorithm (defunct) : 42:40
"A working 2D recursive" algorithm : 47:35
bro could plz suggest me the best data structure video channel...i'm a begineer
You're awesome
doing god's work
Wow I love you bro.
Where's my fucking son?
I failed math in high school and over 20 years later actually enjoyed watching and learning from this. I’ve been interested in algorithms and appreciate MIT sharing this class session.
girl you are not alone. but i am thinking its because its now that you can understand what you can do with mathematics. in our days we were taught math and physics like robots. We had to shove everything inside that head or get whippings.
@@PHlophe ngl it's still taught like that
@@mastershooter64 this is a straightforward Algorithm
endless supply ...Stanford, Berkeley, CMU, Cal Tech and Harvard ...machine learning, AI....
Math is something one can learn at any age , yes it can be difficult but with propper material this challenge we call education can become simple when all the steps are clear and at any given time the next step is obvious . Join a community online , that is much better than self learning by its self
No bullshit, no cheap jokes. Just pure joy of knowledge. How college courses should be taught!
It feels like this Professor is very passionate and knowledgeable about the course material! The hour flew by
set playback at higher than 1x... flies by even faster ;P
Try Harvard CS 50
@@jeffschlarb4965 that's a foundational course, this one's lil more advanced than that
@@harv609 I was speaking in regards to a passionate teaching style...
@@jeffschlarb4965 oh I see, yeah. I agree
Really grateful to MIT and Srini for making this course accessible through OCW... Really enjoyed this course
Alongside this course what did you follow to master ds, algo?
CLRS
Was it worth??i mean whole course
@@KrutikaPatil0109 you read all of it?
@@juanmoscoso0 I doubt that. She did Andrew Ng's deeplearning specialization, was familiar was supervised, unsupervised and semi-supervised learning from work.
This is still the best on-line introductory course for algorithms I am aware of. Coupled with programming exercises, it would make legendary content for MITx and edX.
Learning a course after a lecture feels like I'm into college, Thank you so much MIT for all your open source curriculum 😊🙏🙏🙏
Thanks MIT for the course. I can now understand things very easily as a correspondence student, it's very hard to understand things, but MIT open course-ware has made life and learning very easy.
I actually passed the equivalent course to my university by watching these videos. I also scored an almost perfect score! These videos are a goldmine! Thanks a lot for providing these courses to the general public.
se poio panepisthmeio
@@annapatata6258 Μετσόβιο
@@giwrgosnikolaidis1096 etsii kai egw ekei eimai
@@annapatata6258 odws? Ara h hmmy h semfe eisai. Opws kai na exei bohthane full. Egw me auta ta video perasa algorithmous.
@@giwrgosnikolaidis1096 hmmy eimai 1o etos
Great initiative by MIT. I never imagined i will be able to sit and learn from an MIT professor for free!! 👍
എല്ലാ മലയാളികൾക്കും എന്റെ ഹായ്
from kannur......
@@amalfrancis4846 njanum kannur
@@amalfrancis4846 evideya
Kottayam
puthenvelikara
"Inefficient but correct is definitely better than being efficient but incorrect" - Srini Devdas
Pretty obvious.
"Move fast and break things." - The Zuck
the mantra of cryptograph and information security in general
"but it works" -literally every programmer
Just finished 6.0001 and 6.042J, now starting 6.006, just as a head start before I join university next year. Really grateful to MIT to provide these lectures for free.
you will have a great understanding already going into uni. Good luck on your studies. I wish I had dived into these courses when I started my programming journey.
I'll do those 2 first you did, they seem pretty good. Thanks for commenting man !
@@aishwaryadharmadhikari7165 yup they are very helpful and infact they are the prerequisites for this course.
@krit grover could you please share the link of 6.0001 and6.042J,and 6.006 ,pizzazz
It would be a great help for others, plzzz share
@Aishwariya dharmadhikari plzzz provide all the link
Don't worry about peak finding algo. If u r confused about binary vs random for 1d peak finding or global peak vs relative one, just learn that this video is for introduction and give students with non programming background a feel of algorithms and a little of divide & conquer. Hope u watch the whole playlist and i can assure you there are no such confusions in later videos!
Thanks MIT for the amazing playlist
I feel really dumb about this problem.
I don't understand how it's log(n). I figure you need to check around you on both sides to know if you're a peak. But also you can't eliminate more elements than the ones directly around you as potential peaks because the array is unsorted. How are we cutting potential solutions in half on every check? I've understood some DSA concepts, but even this first class just left me confused lol.
Edit: Ah I misunderstood the problem. We're looking for any peak not the highest number. We know that if a number is higher we can jump into the middle of that side of the array and if the number to our left is higher than there must be a peak between the one we started with and the one we just chose. If the number on the right is higher instead we just keep cutting through. Worst case scenario the numbers just increase constantly in one direction and we eventually find the only peak on the extreme right of or left of the array.
@@das6109 That was exactly my concern lol, from first go it looks like we may skip a peak on the side we're skipping, but seems like if A >= B, then there is a guaranteed peak on side which includes A :)
Honestly, the best lesson I've ever watched!
MIT is the best for a reason! I'd never hesitate to dive right into MIT OCW by this time.
I felt smarter after watching just the course overview, excited to watch the entire series!
Hey
@Deonex replying to a 7 y/o comment xdd
Hello, how are you after 7 years?
@@danid1464 I'm a full on software engineer! Did an internship at Microsoft and have been working at startups which interest me since then
@@JohnnyDoeDoeDoe man, this gives me hope for the future. I'm wondering, did you go to a university?
I really feel like I am at MIT and having a live Lecture. Thank You, MIT
Keep it up MIT ....it's such a nice job to give lectures from excellent professors in online for completely free.....THANKS
I cried. Just visit the link in description and see how wonderfully everything is arranged for us to learn. Thank you team MIT. I cannot explain what this means to a student like me from small indian village. It's a dream come true. Best gift for life.
hey bro i have just learned all the basic and important things on java..can you suggest me from where i can study and concepts of dsa..plz help me i am about to sit on my college placements
@@anarghanayak8586 ua-cam.com/play/PLUl4u3cNGP6317WaSNfmCvGym2ucw3oGp.html
xd
I seriously envy the professors at MIT. The profs at my university can't hold a candle to their organization and ability to simplify difficult concepts.
My uni professors make simple concepts more difficult, what's worse is that they do it with confidence.
I just wish i had find this earlier in my career, but back then I was not ready to understand how blessed I am to access this. MIT is dream but I can access such courses at my fingertips now!!
Prerequisites
A firm grasp of Python and a solid background in discrete mathematics are necessary prerequisites to this course. You are expected to have mastered the material presented in 6.01 Introduction to EECS I and 6.042J Mathematics for Computer Science.
If you have not taken and been successful in each of these subjects, please speak with a TA or professor before enrolling. We do allow students who have equivalent, other experience with the material described above to enroll, but with the firm understanding that mastery of this material is assumed and that course staff will not feel obligated to cover it or to help students who are struggling with it.
6.006 is a 12-unit (4-0-8) subject and serves as a Foundational Computer Science subject under the new curriculum. It is a direct prerequisite for 6.046 Design and Analysis of Algorithms, the theory header.
Wait so I won't learn anything if I only know C?
Bored Chinese Even though this class uses Python you could still learn something. Really depends on your ability to grasp and apply the lessons to the C language.
Hi Could you please provide the link or direct to proper links for the prerequisite courses. I searched in ocw.mit site but there are 4 courses(Spring 2005/2010 and Fall 2005/2010) with 6.042J as title.
Peter Reginald thanks
Hello, I wanted to ask If I focus on Java programming and I would like to have a better grasp of algorithms and data structures, in order to help me in Programming, is this course appropriate for that or should I look for something different ? Thank you.
I have absolutely no clue what he's talking about but yet I'm here listening like I'm really trying to learn it .
Spend some time on a Basic Data Structure course. It will make sense then.
@@yojodingy6334 Can you please explain what an algorithm is?
@@yojodingy6334 hey!! stop acting Smart and try to get a life please!!
I remember taking an intro to Algos class as an undergraduate way back when. And I remember not having the slightest idea how to get O(logN) for the peak finding problem. And then just being in total shock when some student from the back answered it the first day, like at @24:52, thinking that kid was the next Dijkstra or Primm lol. I'm now in my 30's grinding away at leetcode and reading CLRS for interviews. And now that I think about it, that kid at @24:52, was already doing what I'm doing now well before he even took the class. Start while you're really young!
do you think in long term software engineer role is good considering the dynamic nature of job scenario
@@utkarsh_108 software engineering as in dumb code, probably not. But there will always be a need for people that can solve problems and put that into code as a tool or final product
The array there is not necessary sorted, so binary search doesn’t seem like a valid approach. Did I miss something?
@@ViktorKishankov All you need to do is find ANY peak in the array. The search starts in the middle, if the value is rising to the left, there must a peak somewhere on the left, same for the right. Otherwise, you must already be on a peak. Imagine you were on a mountain looking for a peak, you would head in the direction where you have to walk uphill. Binary search works because it is any peak, not the greatest peak.
What if the cameraman started learning from this lecture and finds himself becoming a programmer :)
He’s already programmed a robot to do the camera work.
MIT president is the cameraman.
Yep
Or the janitor.
Nothing wrong with being a cameraman. If you imagine a world with only programmers, it would be awful
I like how the chalk is soft ^_^
svellene Lol Lol ASMR*
Jill Talk literally listening to this for asmr but multitasking to get some of that brain power going too.
MIT
bitch I didnt ask
MIT
I feel like the content of MIT and lower ranked institutes is the same. The difference is in the students and the delivery of the explanations.
15:30 specific problem -peak finder
28:10 divide conquer algorithm
34:30 how usefulness depends on size of input data
36:15 peak for 2d
best time to be alive, you can study from best teacher across the world for free at home.
Wow what a course !! the professor makes it so easy to understand algorithms thank you MIT !
Thank you MIT for uploading this content. Its truly a blessing and you are doing a good service to our planet Earth.
Watching this video from Argentina and I think it's amazing and great you guys share this w/ the community. Thanks!!
I LOVE how the teacher handles the syllabus!
I feel super grateful to the free content that MIT has put up
Same here. It's incredible. I've been watching lectures, revising the lecture slides, making notes, etc. All for free.
This channel is a gold mine. I'm so happy about finding this :D Thank you very much.
This channel is a goldmine. Great information
Excellent camera work. Wish this camera guy could film all lectures -- he handles the lecturer's walking really well.
8 modules in this course:
1. Algorithmic thinking: Peak finder
2. Sorting and trees: Event simulation
3. Hashing: Genome comparison
4. Numerics: RSA encryption
5. Graphs: Rubik cube
6. Shortest path
7. Dynamic programming: Image compression
8. Advanced topic
this is wonderful. Not having to depend on incomplete resources across the internet and then coming across the complete course taught by the BEST is wonderful. Please do put more such courses and help those students who can't afford to have a quality education for one or the other reason, thank you
Is it a complete DSA course??
What a time to be alive for having such high quality course for free, free education is the best thing that can happen to humans, learn from each other for free, i understand it's difficult to have free education or anything really, because those people need to be payed to live also, but if we can find a way to have as much free education as possible it's just incredible and highly valuable for humanity, and MIT are doing a great job by contributing to this project/idea, thank you
All these students are the ones who say they did not study for exam and still top the class.
Well, to be fair, you don't have to study FOR the exam to ace it. You just have to study period and that's what they do
Doubt it, MIT courses are hard as hell
@@joeyGalileoHotto MIT courses are quite easy....But our UN****** education system quite hard(Deep fact).
@@alphaco3868
Can I rely on this course to learn data structures and algorithms
I mean we are in 2020 and this videos are before 7 years
@@mohammedjassim9250 Yes you can...I recently watched this lecture __ua-cam.com/video/JPyuH4qXLZ0/v-deo.html This lecture is about algorithm analysis. Our professors also used this technique. You understand what i'm taking about. If you complete algorithm and data structure from here & understand concept fully. I'm sure you'll find it very helpful no doubt. They also provided textbook that is available for free(.pdf)
What a comforting teacher...
Very clear and straight remarks
The questions of life are very import
We will find how defaults defaults are l8fe
I think the professor have not explained the implication of the 1D and also 2D algorithm.
The key is that for any 1D or 2D array there is a largest element(>= any other) and thus must have a peak. (Theory 1)
However, in an array the sub-array's peak may not always its parent's peak if the largest element is on the edge and has a bigger element next to it. (Case 1)
To find a peak in a sub and at the same time avoid Case 1, we must choose a larger side to ensure that even if the largest value is on edge, it is still larger than its boundary in the parent array.
This is also why in 2D search we want a global maximum. We want to ensure that even if the max is at the boundary, it is still larger than the any element in the boundary column containing the global max we found. And thus the global max in the larger side must contain a peak.
One of those best initiatives I have ever come across. It would create monopoly in the Indian market over all ed-tech platforms and offline coaching tuitions. Only a matter of awareness. Never heard a negative review about this.
So much knowledge in just an introduction course, love it.
I always dreamed on going to MIT... and now I can do it from home. Thank you :)
once you get it, that moment will make your day.
I wish my University lecturers were so well spoken and were more interested in getting me interested in conveying excitement about the topic instead of just getting through the lecture...
I wish the colleges and universities here had teachers like this man. They all have thick accents and do not explain in detail like this instructor. No wonder MIT has the rep it has. wow.
Long live MIT, providing this content for free. It's pure gold for someone like me from a third world country.
Which country
I am so glad that I found this. Been interested Algorithms for a long while.
I needed this. My current algorithms class is a joke.
For the 1st 6 weeks professor, on average, cancelled class once a week (we have classes 2x a week). Half of the 1 class we meet up, is him telling stories/making jokes. Then the whole corona virus thing hit, and we are now doing lectures online, where the first week he cancelled a class again. His current online lectures all choppy because I think he is using a laptop webcam to record him writing on a whiteboard. The quality of the videos are 240p at best, and can drop even worse at times. Looking at the syllabus, we are 4 weeks behind schedule.
hey isn't this a little outdated? do you still find it relevant to study from this series? It was created in 2011.
I really appreciate this free of cost content, because people who were not much concerning about their academics during their college days also get a chance to revisit(of course I am not speaking about MIT alumni)
this guy seems like a really experienced teacher...
MIT teaching faculty is extraordinary .
i swear youtube recommended me this. i was only looking for how to spell mathematics.
Wow, there's 47 of these. I love the internet :3
This channel is a gold mine!
Prof. Srini Devdas is Indian..
Proud💪💪
A whole course focused solely on algorithmic analysis?! With two amazing professors co-lecturing?! This is why MIT reached is the global leader in post-secondary STEM education.
Finally I figured out why he searches for a global maximum in the column instead of a local peak. It is because the peak will be guaranteed in case of a row with a number which is already a max number in a column.
In all other cases, it will not be guaranteed. I think he left this part so that the students may think about it. In the lecture notes, he has asked this question:
"What if we replaced global maximum with 1D-peak in Attempt #2? Would that
work?"
The answer is that it won`t, because the peak won`t be guaranteed. The explanation of this is that a largest element in a 1D array is definitely a peak.
+Rohit Jain Where Can I Find The Lecture Notes?
+Rohan Menon You can find Lecture Notes, Transcripts etc. at this link goo.gl/vkxGVS
+Rohit Jain Can you pelase explain step-by-step what's happening? So
1. We pick a middle column and find the global max( this guarentees that there is a peak in that specific column?)
2. Then what? You comepare the values to the right/left of that specific peak?
+Toiletwifi
1. We pick the middle column and find the global max in that column. Lets call it x
2. We compare x to its left cell and right cell.
3. If both left and right are smaller than or equal to x, then x is the peak, otherwise we proceed to step 4
4. if left cell > =x, then we now perform the same operation on the grid on left portion of column containing x otherwise the right portion.
5. We peform this operation recursively, at some point, either we will find a peak in the process on a x or we will be left with only one column.
6. If we are left with only a single column, then the global max of that column will be a peak.
Essentially what we are doing is:
1. We are ensuring that we are always narrowing our scanning area by half in each iteration, always moving towards the side containing a number greater than the max of middle column.
2. This ensures that either we get a peak in the process or we are left with a single column which has atleast one value that is >=its adjacent values (because it is greater than the global max of the adjacent columns.)
3. Now before we were left with a single column in the end, we now know that this column has a value (say y) larger than the global max of the adjacent columns . So even if there is a value greater than y in our single column, it would surely be greater than its adjacent values and is therefore a peak.
This last point is most crucial to understand, and can be understood more clearly with help of self designed examples and following this algo.
Rohit Jain Thanks for the explanation bro! Sorry I just started coding/algos, things come slow to me. I understand everything up to step 3.
So I'm still a bit confused. For step 4. let's assume x =10 and left cell=20 (assuming left cell > =x), we are now in that coloumn containing 20. Now what's the next step. We check that WHOLE coloumn ( the one with the 20) and find a global max. And then look to left and right cell. THen repeat until we find a peak? So we have to find a global max in every coloumn ( assuming step 3 doesn't work out). Please explain in baby words/example, how this will guarentee a peak. Sorry once again for my dumb understanding question
Great lecture. I'm looking forward to the rest of the series!
When I read the comments I saw there were some people with a confusion about peak finding.I think It's better to know that he was not finding the "Highest Peak". He was just finding "A Peak". correct me if I am wrong.
i think so
this lecturer is excellent and having had at least 20 different uni lecturers over the decades i should know; there are some shocking ones which oddly are the nicest characters ...
Watching this in quarantine... so much better than Waterloo’s voice-over slides approach for giving lectures during corona. Kinda salty that I’m paying Waterloo just to get better content for free online
Lol
Thank you MIT for sharing videos! They are incredibly useful.
Damn, I wish I went to MIT, this guy could teach! :) Bro....
IDK why but I'm fascinated over the thought of fighting my way into MIT. The chances are not high at all, but I wil give it my best shot.
Minh Phúc Nguyễn You can do it man, if you haven’t already
@@LittleBlacksheep1995 did you get it?
All the other professors like linear algebra and discrete math et al are fabulous professors. They make math and CSA not hard and interesting.
@@LittleBlacksheep1995 any update?
it is free and I thank you...
Unfortunately not.. You have to pay the online tuition fee to this bank account 32423545464566
Hehehe
Классный канал, от подачи не устаёшь
My master said : " GREAT TEACHER WILL ALWAYS MAKE GREAT STUDENT " So , i'm not great student , and i blame to my teacher for this .. but this is outstanding knowledge for free , wow .... Peace from Surabaya , Indonesian ..
this is my great fortune to have a class of MIT, its amazing to particpate in it☺☺
computer science undergrad major core courses: calculus, linear algebra, discrete mathematics,
data structure, assembly language, operating systems, and algorithm,...etc.
This lecture made me reconsider going to Computer Science. Hard af
It is very awesome that we can follow a great courses from great institutions like MIT for free .
Programmers who are confusing with this. Look at 22:12 ---> Both the sides are decreasing. It may have more than 1 peak which means its a continous streak of mountains and we need to find any peak.
Great lecture! Just wished the cameraman wasn't in love with back of professors head!!!
"Peak finding" is just a fancy name for finding the max value of an ANALOG continuous function. It won't work for a DIGITAL or discrete function. Only useful for processing some things.
Its literally the same concept for a DT function? Look into Signals / Signals and Systems it will teach you more about these subjects.
Well, knowledge of basic algorithms and data structures is definitely a must for every programmer, but its just a small part of "a bigger picture". You should also be familiar with Web technologies, programming languages, frameworks etc. Also remember that "technology aspect" wont make your website successful if you do not have a GOOD IDEA (which targets people's needs), marketing and promotional side etc. Good luck :)
Thanks for featuring this class. I need to know algorithms for my current computer programming learning in Python, Artificial Intelligence etc. I listen to these classes to reinforce my current knowledge.
Took some time to realize why he found the global max. Try for A = [ [12, 15, 16, 27], [10, 8, 3, 28], [9, 7, 25, 26], [8, 6, 2, 3] ]. In first iteration j will be 2nd column of A, in next iteration j will be 3rd column of A, and in final iteration j will be 4th column of A. Answer = 28. Realize, as we move from 2 --> 3 column, the condition checked was 15(max of 2nd)
One good thing about watching this at home is you don't have to answer the instructor's questions for couch cushions. =)
Agree
Great lecturer. Thank you, professor.
How in the world does the binary search like algorithm help with the 1 dimensional peak finder algorithm? The array may not be sorted..Confused.
It might seem counter-intuitive.. but it works.. Using approach similar to binary-search, only gives an indication of which direction to proceed in... You, eventually, might not end up at the peak your previous binary-search comparison was indicating to...
Its like saying that, 'if at i, the array is sloping up towards left, then there must 'definitely' a peak somewhere towards the left.. whereas its 'possible' that I might not find one if I go towards right.. So, now lets look at [left/2] ...' ...and so on.
As 25:30 the professor states that he is not looking for THE peak, he only wants to find A peak. It does not matter which peak he finds, just find one. It should be understood that the algorithm he is discussing is not intended to search through a sorted list. It's intended to search through an unsorted list of "real-world" values. The lists this algorithm is for will have one or more peaks of which he is only concerned with finding one arbitrary peak.
If the array was sorted, the complexity for finding a peak would be O(1). The last element :D
binary search itself is not being used but the technique of splitting array into halves on every next step is being used (which is the same technique that binary search uses) + the problem is to find 'any' arbitrary peak
Murali Mohan
You either did not watch the video or did not understand what was explained in the video. That IS what the professor is telling the students to do. The algorithm he is describing is NOT looking for the highest number in the set. He is only looking for a peak relative to a random starting position.
As the professor states early in the video, this class is an introductory course in programming and algorithm design. It is not intended for students who already have experience with programming. It is intended for students who have no experience. The example he provided is intended to give students new to programming a fundamental idea of how an algorithm works.
i guess professor belongs to india,really its proud moment,thanks for providing us lectures free of cost.
Honestly, is this the introduction? No wonder why MIT students are one of the best in the world!
if they are it isn't because how it is explained in this lecture.
Thank you MIT. Great lecture
Hey! It's been 5 years since no one had like your comment I'm the first to like 😂😂
never realized that the footage is in 360p
Same
Lecture *starts* at 15:25
😉
Some of the most intelligent brains together
every student needs this kinda cool prof.
26:00 why can't my professors be this cool
Bcz they do not get $35,000+ per month
Look at the professor he is very much active through out the lecture >3
keeps the weight down to be dynamic.
I got this question in a tech interview! Provided O(n) solution. Here for the log(n) solution.
This is a gem of a course
thanks for uploading the recitations, I watched this series long time ago and now I get to review it with recitations!
Indian professor in MIT Wow
Indians ace at everything 😎
I really want to know what happened to the students after 10 years. where are they now, maybe hey even have a family now.
The TA for recitation is a tech lead at Google now.
@@spaike97 that is nice to hear
I'm so used to Prof. David J. Malan's lectures that by putting the speed to 1.25, I felt just at home 😜
FYI.... For One Dimensional Array the Binary Search algorithm works only on a Sorted Array.
You may feel divide and conquer will not work because the array is not sorted. but you only need to look at the question, the definition of a peak and an example to convince yourself that it actually works