Lecture 13: Breadth-First Search (BFS)

  Рет қаралды 697,236

MIT OpenCourseWare

MIT OpenCourseWare

Күн бұрын

MIT 6.006 Introduction to Algorithms, Fall 2011
View the complete course: ocw.mit.edu/6-006F11
Instructor: Erik Demaine
License: Creative Commons BY-NC-SA
More information at ocw.mit.edu/terms
More courses at ocw.mit.edu

Пікірлер: 299
@lifeoftomi_
@lifeoftomi_ 4 жыл бұрын
You know what I like about the MIT lectures? They tell you the application/use case of what you're being taught. That makes a huge difference for beginners who have no way of visualizing these abstract concepts. Many people who get discouraged with stuff like this aren't able to relate with the content and feel like it's something crazy out there. It's the simple things.
@manavarora7644
@manavarora7644 4 жыл бұрын
I could not agree more with this. The biggest difference that I spotted along the lecture
@dominic8147
@dominic8147 3 жыл бұрын
That's not the case for junior or senior level MIT OCW courses. The same professor teaches an advanced data structures course on KZfaq and those are so academic and abtruse that he doesn't write code and only sometimes gives applications. Like his succinct binary trees data structure video. He gives one use (the Oxford English dictionary), but besides that he just explains its math.
@user-eg2jr8dt1j
@user-eg2jr8dt1j 3 жыл бұрын
The secret is that some of the professors actually don't KNOW why they are teaching what they are teaching. Professors aren't always allowed to just "profess" what they know these days. This is the grand illusion of academia, many who know what's going on, don't teach. Many who teach would simply prefer to waste their time in a laboratory doing research work.
@shohanur_rifat
@shohanur_rifat 2 жыл бұрын
Right you are my friend.
@missriri-if9yl
@missriri-if9yl 4 ай бұрын
u so real
@sergeykholkhunov1888
@sergeykholkhunov1888 2 жыл бұрын
00:40 graph search 02:00 recall graph 05:20 applications of graph search 10:30 pocket cube 2x2x2 example 20:25 graph representations 20:40 adjacency lists 26:00 implicit representation of graph 29:05 space complexity for adj list 31:05 breadth-first search 34:05 BFS pseudo-code 36:58 BFS example 43:27 shortest path 48:35 running time of BFS
@solwex
@solwex Жыл бұрын
Hey there! There are some other videos in this course playlist that explain the terms used in this one. - represent graph in Python: kzfaq.info/get/bejne/a7Cohst1v8XdnKM.html - adjacency list in Python: kzfaq.info/get/bejne/eZuDg9aKnJjDc4E.html - examples of theta, O, omega: kzfaq.info/get/bejne/hp2WpcZzxJPLZKs.html - what is hashing: kzfaq.info/get/bejne/ZrOPnqyizd3GdqM.html - python implementation of iterator: kzfaq.info/get/bejne/Y6qnetV7nbDcdJc.html
@thepeopleofblore
@thepeopleofblore 7 жыл бұрын
20:57: Representation of graphs 31:10: BFS
@cheemtu2375
@cheemtu2375 7 жыл бұрын
thanks man
@balkan917
@balkan917 7 жыл бұрын
why would you wanna skip? this guys chit chat is excellent, I can listen to it all day :)
@eric3970
@eric3970 7 жыл бұрын
it helps me save up some time thx
@devinjackson6437
@devinjackson6437 6 жыл бұрын
thanks so much
@sunelkora9503
@sunelkora9503 6 жыл бұрын
BF
@tanweermahdihasan4119
@tanweermahdihasan4119 3 жыл бұрын
Can we just take a moment to appreciate how brilliantly the camera work accompanied this already perfect lecture!
@jessielucky5530
@jessielucky5530 5 жыл бұрын
Super genus guy! From Wikipedia Demaine was born in Halifax, Nova Scotia, to artist sculptor Martin L. Demaine and Judy Anderson. From the age of 7, he was identified as a child prodigy and spent time traveling across North America with his father.[1] He was home-schooled during that time span until entering university at the age of 12.[2][3] Demaine completed his bachelor's degree at 14 years old at Dalhousie University in Canada, and completed his PhD at the University of Waterloo by the time he was 20 years old.[4][5]
@tianna308
@tianna308 Жыл бұрын
omg can't believe I graduated from the same university as him.
@chanpol321
@chanpol321 7 жыл бұрын
Breadth-first search (BFS) is an algorithm for traversing or searching tree or graph data structures. It starts at the tree root (or some arbitrary node of a graph, sometimes referred to as a 'search key'[1]) and explores the neighbor nodes first, before moving to the next level neighbors. BFS was invented in the late 1950s by E. F. Moore, who used it to find the shortest path out of a maze,[2] and discovered independently by C. Y. Lee as a wire routing algorithm (published 1961).[3][4]
@farhan787
@farhan787 4 жыл бұрын
"There are more configurations in a 7*7*7 cube than the number of particles in the known universe" 27:35 - Erik Demaine (2011)
@wetbadger2174
@wetbadger2174 3 жыл бұрын
So how does anyone solve it?
@sukhmandersingh4306
@sukhmandersingh4306 3 жыл бұрын
@@wetbadger2174 by not trying all possible combinations/permutations but trying only the ones that make sense.
@rikampalkar
@rikampalkar 2 жыл бұрын
One of THE best explanation of BFS, I’ve came across. It’s something about the way he explains. Brilliant.
@seansmith1685
@seansmith1685 7 жыл бұрын
I think Erik's lectures are very good
@RobinLinus
@RobinLinus 9 жыл бұрын
Totally appreciate you mentioning the diameter O(n^2/log n) of n x n x n rubic's cube!!!
@sahilvelhal1435
@sahilvelhal1435 4 жыл бұрын
MIT teachers make student love the subject they teach :)
@vivekmittal229
@vivekmittal229 4 жыл бұрын
I really like the sound of the chalk.
@NewtonCazzaro
@NewtonCazzaro 7 жыл бұрын
This is amazing, I am a student of Algorithms at the University of Nevada, Las Vegas. I really appreciate this class, thank you so much for the KZfaq videos MIT!!!!
@awful999
@awful999 2 ай бұрын
damn that’s crazy i’m studying cs there right now, im taking algorithms at the moment
@jirokaze6380
@jirokaze6380 4 жыл бұрын
His friendly tone makes the revising process so much easier!
@janmadle4243
@janmadle4243 7 жыл бұрын
This lecture was really "Breadth"-takíng :-D ty Erik
@danielday3162
@danielday3162 7 жыл бұрын
oh my.
@janmadle4243
@janmadle4243 7 жыл бұрын
oh you
@umashnkaryadav4719
@umashnkaryadav4719 6 жыл бұрын
SD ex cc
@aravindvarier1865
@aravindvarier1865 4 жыл бұрын
You are breadth-taking.
@zoltannemeth8864
@zoltannemeth8864 4 жыл бұрын
Personally, I prefer a less “edgy” pun, with greater “depth”. (Haha!, graph humor!)
@IamFilter94
@IamFilter94 8 жыл бұрын
Scissors cuts Paper Paper covers Rock Rock crushes Lizard Lizard poisons Spock Spock smashes Scissors Scissors decapitates Lizard Lizard eats Paper Paper disproves Spock Spock vaporizes Rock (and as it always has) Rock crushes Scissors
@bobbob3630
@bobbob3630 6 жыл бұрын
no
@intellagent7622
@intellagent7622 6 жыл бұрын
LMFAO
@nandkishorenangre8244
@nandkishorenangre8244 5 жыл бұрын
BBT ha
@wip727
@wip727 5 жыл бұрын
I am sorry, can you repeat that?
@shalindeval8746
@shalindeval8746 3 жыл бұрын
His T-Shirt lol
@7th_CAV_Trooper
@7th_CAV_Trooper 2 жыл бұрын
When I was a kid I used a screw driver to pry the Rubics cube apart and put it back together solved. That's when my parents knew I would be an engineer and not a mathematician.
@sam.kendrick
@sam.kendrick 6 жыл бұрын
Thank you! Love Erik's lectures!
@shreyakjain9692
@shreyakjain9692 4 жыл бұрын
Thank you MIT for providing these lectures. These are very helpful.
@siddhantjain9596
@siddhantjain9596 7 жыл бұрын
My god! His t-shirt also has a graph!! Brilliant!
@amanarora476
@amanarora476 6 жыл бұрын
Yup, and that too a complete graph.
@satyakighosh4226
@satyakighosh4226 5 жыл бұрын
bros before hoes
@286432531
@286432531 2 жыл бұрын
Much better than the newer version. Glad I come back and watch this.
@99DaNtEmAN23
@99DaNtEmAN23 9 жыл бұрын
This guy's lectures really puts the Computer Science lectures at UofT to shame. But then again he is a prodigy, still doesn't justify why we get grad-students as "profs" though. Just my 2 cents
@lolpe1000
@lolpe1000 6 жыл бұрын
Well in the UoC, our prof doesn't even go into much depth... The guy in this video is amazing.
@bharasiva96
@bharasiva96 6 жыл бұрын
They go "Breadth-First" I suppose.
@raymondlion314
@raymondlion314 5 жыл бұрын
At UIUC, we were taught such stuff in C++ :(
@sarpersar8010
@sarpersar8010 8 жыл бұрын
Thanks to Erik Demaine
@ordinarycoder8090
@ordinarycoder8090 8 жыл бұрын
Best lecture on BFS.. Erik Demaine rockss....
@vedient
@vedient 5 жыл бұрын
Lectures like this make me feel how lucky MIT students are !!!
@hortsss
@hortsss 4 жыл бұрын
@@SimonWoodburyForget but I think the point is to just give students an introduction of the subject so they can work on real problems
@theendurance
@theendurance 3 жыл бұрын
@Simon WoodburyForget Because you are forgetting that Computer Science is a...science. CS is not programming. Programming is monkey work. Algorithms are at the heart of CS. You don't need code because this isn't meant for practical uses. CS is just math for computers.
@devyashsanghai585
@devyashsanghai585 7 жыл бұрын
Love the way he is wearing a t-shirt with 5 vertices and and 5 directed edges. Whcih would require a space complexity of O(10) to be stored.
@m.yousafjaved6039
@m.yousafjaved6039 7 жыл бұрын
undirected ?
@naviseven5697
@naviseven5697 7 жыл бұрын
It's a reference from a rock paper scissors game from the big bang theory, so it is directed.
@le0nz
@le0nz 3 жыл бұрын
So 0(1)
@seansmith1685
@seansmith1685 7 жыл бұрын
"There are more configurations in this cube than there are particles in the known universe. Yeah. I just calculated that in my head, haha" - Erik
@rodi-soonshin-kwon
@rodi-soonshin-kwon Жыл бұрын
Very clear and intuitive 💎 Thanks for sharing this invaluable resouces! Big shout out to MIT 🔥🎓
@rohitsurana9281
@rohitsurana9281 7 жыл бұрын
Thanks MIT and Eric.Best teaching that too for free.
@andreportaro
@andreportaro 3 жыл бұрын
42:40 Just want to applaud at an amazing explanation and demo 👏
@gnulinux2000
@gnulinux2000 2 жыл бұрын
Absolutely must watch, adding where they are used and application gives good perception which otherwise made graph dry subject for me.
@TheFootballPlaya
@TheFootballPlaya 3 жыл бұрын
this guy is the man. his lectures are awesome.
@panagiotistzakis6799
@panagiotistzakis6799 Жыл бұрын
Amazing lecture sir and of course your are from MIT because your level of knowledge is very high!!Thanks for your time..
@yl4441
@yl4441 3 жыл бұрын
Thank you so much for posting this video!!! Its too hard to find videos explain algorithms clearly and easy to understand.
@robertalaverdyan3150
@robertalaverdyan3150 4 жыл бұрын
Wonderful. I wake up watching these lectures and sleep watching them.
@Uber_handle
@Uber_handle 3 жыл бұрын
The grind!
@lifanzhong9782
@lifanzhong9782 Жыл бұрын
Thanks for the wonderful lectures Erik!
@nbro5529
@nbro5529 9 жыл бұрын
Erik Demaine - "...but in the textbook, and I guess in the world..." lol
@ReaRalte
@ReaRalte 9 жыл бұрын
Better than my College's class, thumbs up.
@dpydys
@dpydys 2 жыл бұрын
Thank you for a very clear explanation.
@josh54
@josh54 5 жыл бұрын
Wish my professor wasn't lazy and wrote all the notes on the board like this instructor. I can't keep up with half-assed powerpoints that my professor rushes through
@HanifCarroll
@HanifCarroll 4 жыл бұрын
I don't know if he gave you guys the powerpoint slides, but if he did, then you wouldn't have to spend time copying them down because you'd know you would get them. That way, you can spend time writing down the things that will be more helpful for you.
@David-kx3xf
@David-kx3xf 3 жыл бұрын
Mine used wolphram mathematica live, and it was an absolute mess 🤦🏻‍♂️
@rafiaqutab8174
@rafiaqutab8174 9 жыл бұрын
You are such an amazing teacher! I wish I had you in college
@ru2979
@ru2979 Жыл бұрын
I wish I had u 🥺👉👈
@sujivsontitus5463
@sujivsontitus5463 9 жыл бұрын
May be the camera person should consider finding a balance between landscape and portrait shooting, instead of taking the actions in portrait always. It gets difficult to see the contents in the board with the staff, since the focus is set to one "focussed" part of the black board. This is just my thought. btw MIT rocks!
@MaicahRu
@MaicahRu 8 жыл бұрын
Sujivson Titus True, a little frustrating when he's pointing at something but it's off the screen, or you're reading through something but part of it is cut off
@LiSek9611
@LiSek9611 3 жыл бұрын
great lectures, thank you for uploading this
@chanpol321
@chanpol321 7 жыл бұрын
Time and space complexity[edit] The time complexity can be expressed as O ( | V | + | E | ) {\displaystyle O(|V|+|E|)} ,[5] since every vertex and every edge will be explored in the worst case. | V | {\displaystyle |V|} is the number of vertices and | E | {\displaystyle |E|} is the number of edges in the graph. Note that O ( | E | ) {\displaystyle O(|E|)} may vary between O ( 1 ) {\displaystyle O(1)} and O ( | V | 2 ) {\displaystyle O(|V|^{2})} , depending on how sparse the input graph is. When the number of vertices in the graph is known ahead of time, and additional data structures are used to determine which vertices have already been added to the queue, the space complexity can be expressed as O ( | V | ) {\displaystyle O(|V|)} , where | V | {\displaystyle |V|} is the cardinality of the set of vertices (as said before). If the graph is represented by an adjacency list it occupies Θ ( | V | + | E | ) {\displaystyle \Theta (|V|+|E|)} [6] space in memory, while an adjacency matrix representation occupies Θ ( | V
@gaganb
@gaganb 3 жыл бұрын
I can smell the chalk dust through the video. Takes me back, great stuff.
@carlosseda5619
@carlosseda5619 2 жыл бұрын
Amazing explanation, thank you!
@ariadnel5809
@ariadnel5809 6 жыл бұрын
Thank you this video is a great help.
@RICHUNCLEPENNYBAGS77
@RICHUNCLEPENNYBAGS77 10 жыл бұрын
Clear. I read the chapter corresponding to this in the Algorithm Design Manual but I wasn't feeling like it really all came together but this did it for me.
@solwex
@solwex Жыл бұрын
Simply evergreen content!!
@MrWhileloops
@MrWhileloops 5 жыл бұрын
Excellent lecture.
@zlw8844
@zlw8844 5 жыл бұрын
Erik is the best teacher who explains data structure and algorithms so clearly and in a simple way.
@lockersrandom6161
@lockersrandom6161 3 жыл бұрын
Thank You MIT.
@ruchirmumbarkar8758
@ruchirmumbarkar8758 4 жыл бұрын
Thank you! His t-shirt also has graph on it!
@SaiVineet
@SaiVineet 10 жыл бұрын
This guy is so cool!
@MetallicDETHmaiden
@MetallicDETHmaiden 5 жыл бұрын
Great video!! learned a ton!
@adityatrivediii
@adityatrivediii 4 жыл бұрын
Thanks! Nicely Explained
@jakefischer8281
@jakefischer8281 3 жыл бұрын
I like the way he writes.
@csvegso
@csvegso 3 жыл бұрын
he is a great teacher
@hnupadhyaya
@hnupadhyaya 4 жыл бұрын
Dear all, In this lockdown stage in home, please provide game equipments to your children/students to play. If not help them to watch "Math Art Studio" in you tube. They will play with their names and learn different concepts in mathematics.Those who have seen it they have learnt maths and enjoyed its beauty every day.
@tehleelmir4407
@tehleelmir4407 2 жыл бұрын
Thank YOUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU, it took me 3 days to understand how to track the path in bfs
@kordaler
@kordaler Жыл бұрын
Here are points in other videos in this course's playlist that explain terms used in this video: - represent graph in Python: watch?v=5JxShDZ_ylo&t=1709s - adjacency list in Python: watch?v=C5SPsY72_CM&t=189s - examples of theta, O, omega: watch?v=P7frcB_-g4w&t=130 - what is hashing: watch?v=0M_kIqhwbFo&t=22 - python implementation of iterator: watch?v=-DwGrJ8JxDc&t=978 I found this useful. Hope some of you find it useful as well. If you find more terms for which I can add pointers, let me know. If a few people think that this is useful, I can add this information for a few more videos. If you are looking for this info in any specific videos, let me know. If I have made these notes for those videos, I will add. Cheers!
@solwex
@solwex Жыл бұрын
Very useful. Would be more convenient if the link was properly given.
@user-my3yg3nz8r
@user-my3yg3nz8r 2 жыл бұрын
This is amazing.
@allene_
@allene_ 3 жыл бұрын
yay MIT lecture in my room
@Zero-bl6ym
@Zero-bl6ym 7 жыл бұрын
Eric is great!
@alexandrugheorghe5610
@alexandrugheorghe5610 3 жыл бұрын
Don't understand why people complain about the chalk. As he writes down so am I doing in my notebook and I find this to be working very smoothly [especially as I can pause the video and also think for myself and try to prove what he said] - I'm getting most of what he says - less so to get a proof on the spot for n x n x n - but hey, he published a paper with et al. on this subject so :) that's accessible for later.
@MarzukiSondoss
@MarzukiSondoss 10 жыл бұрын
Das is fantastisch! vilen dank
@benaya6
@benaya6 5 жыл бұрын
amazing lecturer. Mr. cameraman, please dring cofee or something and keep up
@MrTacoToy
@MrTacoToy 4 жыл бұрын
Cameraman did a good job of knowing when we'd rather look at the board than him walking.
@shivammalviya1718
@shivammalviya1718 5 жыл бұрын
Thank you very much sir
@musfiqniazrahman
@musfiqniazrahman 10 жыл бұрын
it's, in fact, from 34:14
@David-kx3xf
@David-kx3xf 3 жыл бұрын
There are two ways to study algorithms: the MIT way, or the hard way
@spontaneoushorts
@spontaneoushorts 8 жыл бұрын
:O its amazing then my whole CIT department
@goodnis6180
@goodnis6180 8 жыл бұрын
thank you
@parattakornchaisiriyanon2253
@parattakornchaisiriyanon2253 5 жыл бұрын
Awesome Teacher
@onurduygu3281
@onurduygu3281 3 жыл бұрын
Thank you Eric! Eric choupo moting
@Jbdoster
@Jbdoster 4 жыл бұрын
I had a great laugh around 19:00, thank you
@rashedsami1959
@rashedsami1959 6 жыл бұрын
Erik Demaine
@VivekTiwari03
@VivekTiwari03 Жыл бұрын
Man I feel smarter just by sitting here even though I have no clue what happened in those 50 minutes.
@devmahad
@devmahad Жыл бұрын
[FOR MY REFERENCE] 1) Graph Applications 2) Graph BFS Algo. 3) Time Complexity
@StevenMcconnon
@StevenMcconnon 11 жыл бұрын
thanks!
@isbestlizard
@isbestlizard 3 жыл бұрын
I've always wanted to know HOW a rubics cube is actually mechanically put together that it allows so much random rotation of everything without breaking or getting gummed up. :O
@monatabuk
@monatabuk 11 жыл бұрын
thanks
@user-jh4dj1ef4d
@user-jh4dj1ef4d 2 жыл бұрын
30:40 BFS 14:44 bookmark
@erics.4113
@erics.4113 3 жыл бұрын
This makes me think about the extraordinary gap in intellect between human beings.
@aishsagar
@aishsagar 10 жыл бұрын
for n x n x n rubic cube, looks like the solution would be 2^(n+1)+n+1. based on 2x2x2 and 3x3x3 values. is it right?
@lancepereira9337
@lancepereira9337 7 жыл бұрын
Is that the guy from the Nova Origami special that proved you can make and 3 dimensional shape by folding a flat sheet of something?
@mitocw
@mitocw 7 жыл бұрын
Yes, Erik Demaine was in that Nova program on Origami. :)
@9033664044
@9033664044 7 жыл бұрын
Can Someone explain how the number of possible states is derived for 2*2*2 cube?
@Balakrishnan1991
@Balakrishnan1991 10 жыл бұрын
thanks...
@bhaveshgupta3846
@bhaveshgupta3846 10 жыл бұрын
what if i want to know all the shortest paths to a node in the example that is there in this lecture! for example there might my exponentially many ways to get to node f from s. and there might be many shortest paths.But BFS gives us only one! i want to know the no. of all the shortest paths between two nodes s and f. How can I achieve this?
@PeterParker-hm7ub
@PeterParker-hm7ub 3 жыл бұрын
this is gold
@MuhammadHassan-lu4ox
@MuhammadHassan-lu4ox 4 жыл бұрын
That hip movements at @5:02
@shabananisha1911
@shabananisha1911 9 жыл бұрын
thank u sir ...
@wthered
@wthered 7 жыл бұрын
I love his T-shirt!!!!
@kirdnehrenned8746
@kirdnehrenned8746 4 жыл бұрын
This is a great lecture. i really appreciate the level of teaching from MIT. This is what makes a good university: its professors. even though this video is 7 years old, i cant believe they're using chalk boards at MIT. White boards are so much cleaner and easier to read / write on.
@KaisarAnvar
@KaisarAnvar Жыл бұрын
His T-Shirt: Scissors cuts paper, paper covers rock, rock crushes lizard, lizard poisons Spock, Spock smashes scissors, scissors decapitates lizard, lizard eats paper, paper disproves Spock, Spock vaporizes rock, and as it always has, rock crushes scissors.
@wetbadger2174
@wetbadger2174 3 жыл бұрын
How do you feed a graph into this method? I hate when people don't show the whole code. Is the adjacency list supposed to be a dictionary/hashtable?
@caesar1CZ
@caesar1CZ 2 жыл бұрын
Prof. Demaine is just incredible. Enjoyable lecture, lots of examples and applications. Would love to meet him in person!
@user-on6nm4ex2q
@user-on6nm4ex2q 6 жыл бұрын
What does "24 symmetries of the cube" refer to?
@akshanshthakur9235
@akshanshthakur9235 8 жыл бұрын
How can someone dislike this video?
@balkan917
@balkan917 7 жыл бұрын
eksisozlukbirsikibeyenmemetimi
@Promixro
@Promixro 7 жыл бұрын
Akshansh Thakur Good question
@mysteriousbillionaire7349
@mysteriousbillionaire7349 7 жыл бұрын
by just clicking on the thumbs down button
@akshanshthakur9235
@akshanshthakur9235 6 жыл бұрын
you made me laugh very hard, good day to you :P
@noguide
@noguide 5 жыл бұрын
Fat fingers & envy
@niharpatil4046
@niharpatil4046 7 жыл бұрын
How are there 24 possible symmetries?
@user-cs6dj1bd9b
@user-cs6dj1bd9b 6 жыл бұрын
At 34:13, if anyone cares to change the subtitles from (INAUDIBLE), what he says sounds like "pseudocode".
@mitocw
@mitocw 6 жыл бұрын
Changed! Thanks for the feedback. :)
Lecture 14: Depth-First Search (DFS), Topological Sort
50:31
MIT OpenCourseWare
Рет қаралды 443 М.
Lecture 19: Dynamic Programming I: Fibonacci, Shortest Paths
51:47
MIT OpenCourseWare
Рет қаралды 2,8 МЛН
The delivery rescued them
00:52
Mamasoboliha
Рет қаралды 9 МЛН
WHY IS A CAR MORE EXPENSIVE THAN A GIRL?
00:37
Levsob
Рет қаралды 19 МЛН
ИРИНА КАЙРАТОВНА - АЙДАХАР (БЕКА) [MV]
02:51
ГОСТ ENTERTAINMENT
Рет қаралды 375 М.
Breadth First Search (BFS): Visualized and Explained
10:41
Reducible
Рет қаралды 188 М.
Lecture 15: Single-Source Shortest Paths Problem
53:15
MIT OpenCourseWare
Рет қаралды 243 М.
16. Learning: Support Vector Machines
49:34
MIT OpenCourseWare
Рет қаралды 1,9 МЛН
MIT Introduction to Deep Learning | 6.S191
1:09:58
Alexander Amini
Рет қаралды 241 М.
Lecture 2: Models of Computation, Document Distance
48:52
MIT OpenCourseWare
Рет қаралды 861 М.
Top 5 Most Common Graph Algorithms for Coding Interviews
13:01
The delivery rescued them
00:52
Mamasoboliha
Рет қаралды 9 МЛН