Knuth-Morris-Pratt (KMP) Pattern Matching Substring Search - First Occurrence Of Substring

Ғылым және технология

Free 5-Day Mini-Course: backtobackswe.com
Try Our Full Platform: backtobackswe.com/pricing
📹 Intuitive Video Explanations
🏃 Run Code As You Learn
💾 Save Progress
❓New Unseen Questions
🔎 Get All Solutions
Question: Given a string s and a pattern p, determine if the pattern exists in the string. Return the index of where the first occurrence starts.
Further Explanation From Tuschar Roy: • Knuth-Morris-Pratt(KMP...
The Brute Force
The naive approach to solving this is looking in s for the first character in p.
If a match is found we begin a search from that index, call it i (for intersect).
We compare the 2nd character of p with index i + 1 of s
We compare the 3rd character of p with index i + 2 of s
...and so on until we have matched to all of p without either having overrun s or having found a mismatch between characters being compared.
We can then return i as our answer.
It doesn’t work well in cases where we see many matching characters followed by a mismatching character.
Complexities:
Time: O( len(s) * len(p) )
In a simple worst case we can have
s = "aaaaaab"
p = "aaab"
The problem is that for each first character match we have the potential to naively go into a search on a string that would never yield a correct answer repeatedly.
Other Algorithms
There are three linear time string matching algorithms: KMP (nuth-Morris-Pratt), Boyer-Moore, and Rabin-Karp.
Of these, Rabin-Karp is by far the simplest to understand and implement
Analysis
The time complexity of the KMP algorithm is O(len(s) + len(p)) "linear" in the worst case.
The key behind KMP is that it takes advantage of the succesful character checks during an unsuccessful pattern comparison subroutine.
We may have a series of many comparisons that succeed and then even if one fails at the end, we should not repeat the comparison work done since we already saw that a series matched.
What we will do is very similar to the naive algorithm, it is just that we save comparisons by tracking the longest propert prefixes of pattern that are also suffixes.
The key is that everytime we have a mismatch we try our best to prevent going backwards in s and repeating comparisons.
Algorithm Steps
We will preprocess the pattern string and create an array that indicates the longest proper prefix which is also suffix at each point in the pattern string.
A proper prefix does not include the original string.
For example, prefixes of “ABC” are “”, “A”, “AB” and “ABC”. Proper prefixes are “”, “A” and “AB”.
For example, suffixes of "ABC" are, "", "C", "BC", and "ABC". Proper prefixes are "", "C", and "BC".
Why do we care about these??
We know all characters behind our mismatch character match.
If we can find the length of the longest prefix that matches a suffix to that point, we can skip len(prefix) comparisons at the beginning.
The key reason we care about the prefix to suffix is because we want to "teleport" back to as early in the string to the point that we still know that there is a match.
Our goal is to minimize going backwards in our search string.
Complexities:
Time: O( len(p) + len(s) )
We spend len(p) time to build the prefix-suffix table and we spend len(s) time for the traversal on average.
Space: O( len(p) )
Our prefix-suffix table is going to be the length of the pattern string.
++++++++++++++++++++++++++++++++++++++++++++++++++
HackerRank: / @hackerrankofficial
Tuschar Roy: / tusharroy2525
GeeksForGeeks: / @geeksforgeeksvideos
Jarvis Johnson: / vsympathyv
Success In Tech: / @successintech
++++++++++++++++++++++++++++++++++++++++++++++++++
This question is number 7.13 in "Elements of Programming Interviews" by Adnan Aziz (they do Rabin-Karp but same problem, different algorithm)

Пікірлер: 554

  • @BackToBackSWE
    @BackToBackSWE5 жыл бұрын

    Table of Contents: (I'm literally screaming. I'm sorry. I want to redo this video to make it better.) Introducing The Creators The KMP Algorithm* 0:00 - 0:15 Problem Introduction With The Naive Approach 0:15 - 2:30 Why The Naive Approach Is Not Good 2:30 - 2:45 Walkthrough How The Algorithm Works 2:45 - 8:14 Building The Suffix-Proper-Prefix Table 8:14 - 12:34 Using The Suffix-Proper-Prefix Table In Traversal Walkthrough 12:34 - 15:08 Time & Space For The Table Build Step 15:08 - 15:51 Time & Space For The Traversal Step 15:51 - 16:08 Overall Time & Space 16:08 - 16:25 Summarizing Our Learnings 16:25 - 16:40 Wrap Up (Begging For More Subs) 16:40 - 17:05 *All 3 of the creators published the final paper together.

  • @iamjimfan

    @iamjimfan

    3 жыл бұрын

    That's good enough, I was looking for info on distributed substring searching of very large string. It gives me nice refresh on the basics.

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    great

  • @piyushyadav9006

    @piyushyadav9006

    3 жыл бұрын

    11:50 was the tricky part as we use KMP logic again in building the table itself.

  • @utkarshbhatnagar768

    @utkarshbhatnagar768

    2 жыл бұрын

    it is the best explanation I found on youtube of KMP algo, no need to redo it

  • @jaivignesh2302

    @jaivignesh2302

    2 жыл бұрын

    Hey ., this is great ,,, greater than geeks for geeks really !!!

  • @ahmedsyed76
    @ahmedsyed763 жыл бұрын

    An algorithm invented by 3 people and they expect us to come up with this in 45 min. Makes sense

  • @salmanbehen4384

    @salmanbehen4384

    3 жыл бұрын

    Fun fact: Dijkstra came up with his algorithm within 20 minutes while having a walk.

  • @_rmw

    @_rmw

    3 жыл бұрын

    Leetcode "easy"

  • @StudyWithRishiP

    @StudyWithRishiP

    3 жыл бұрын

    @@salmanbehen4384 Fun Fact : Dijkastra was thinking about this for a long time.

  • @user-oy4kf5wr8l

    @user-oy4kf5wr8l

    3 жыл бұрын

    those algo interview questions are the most meaningless things ever.. system design is kind of interesting...but algo..jesus

  • @coolmangame4141

    @coolmangame4141

    3 жыл бұрын

    well its popular so its good to know it

  • @dimejifaluyi1759
    @dimejifaluyi17595 жыл бұрын

    BRO STOP YELLING AT ME I ALREADY SUBBED I KNOW YOU'RE GOOD

  • @BackToBackSWE

    @BackToBackSWE

    5 жыл бұрын

    hahaha ok

  • @dimejifaluyi1759

    @dimejifaluyi1759

    5 жыл бұрын

    Back To Back SWE jk😂 thanks for the vids

  • @BackToBackSWE

    @BackToBackSWE

    5 жыл бұрын

    @@dimejifaluyi1759 yw fam

  • @eugeneshcherbo9821

    @eugeneshcherbo9821

    4 жыл бұрын

    😃

  • @nataliagrybovska5702

    @nataliagrybovska5702

    4 жыл бұрын

    paused to find this comment

  • @user-oz7mq8gh8n
    @user-oz7mq8gh8n3 жыл бұрын

    You're the best explainer of algorithms I've ever seen. The extra very visible colored text on the screen while you're explaining also makes a huge difference.

  • @shinra9714
    @shinra97144 жыл бұрын

    I never knew I needed this kind of teaching which makes me feel like im scolded in order to understand why a box is incremented.

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    lmao, sorry, old video, forgive me

  • @kiranteja6392

    @kiranteja6392

    3 жыл бұрын

    @@BackToBackSWE Thats actually helped me to understand easily.Best way to teach is to stress key point to understand that concept

  • @lamihh
    @lamihh4 жыл бұрын

    Thanks to you I'm one less algoritm away towards achieving my dream. So thanks for the good work and keep it up ;))

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    Yuh. Go achieve them dreams.

  • @GPT-X938
    @GPT-X9384 жыл бұрын

    I had a hard time understanding KMP but you broke it down so well and I get it now. This goes for all the videos I've watch from you, thank you!

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    nice

  • @anandchowdhury9262
    @anandchowdhury92624 жыл бұрын

    The only one to explain the "THE TRICKY PART WHICH SO MANY OTHERS SO CONVENIENTLY SKIP"

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    ok

  • @akaraze749
    @akaraze7493 жыл бұрын

    I trust This dude's Teaching skills with my career, He's so CLEAR, To the Point and explains in Simple Language that no KZread Channel Does that. Absolutely Loved it.

  • @sanskrititomar183
    @sanskrititomar1834 жыл бұрын

    Your explanations are amazing! This is the first time I fully understand the kmp algorithm. Thanks a lot! Keep up the good work ;)

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    thanks and ok.

  • @fredwooten14
    @fredwooten145 жыл бұрын

    Calm down a bit you good.

  • @BackToBackSWE

    @BackToBackSWE

    5 жыл бұрын

    hahahahahahahaha, thanks

  • @peeyar2000

    @peeyar2000

    5 жыл бұрын

    @@BackToBackSWE ...Yes.. please slow down.. That will help the audience to process what you are saying.

  • @BackToBackSWE

    @BackToBackSWE

    5 жыл бұрын

    @@peeyar2000 ok

  • @jonathanfoster5106

    @jonathanfoster5106

    4 жыл бұрын

    @@BackToBackSWE 100% disagree with this comment. your cadence and charisma is half the reason this is all working so well. currently watching through EVERY video on this channel. It's literally the best resource I've ever found on this stuff.

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    @@jonathanfoster5106 hahahahaha ay, wassup, local to this topic they are right and their comments are attesting to the explanation's weakness and incomplete nature. Globally what you observe are correct.

  • @hussainalramadan7517
    @hussainalramadan75172 жыл бұрын

    Thank you from my heart. I was about to give up on this algorithm, until I found this video, I appreciate this work so much.

  • @uHnodnarB
    @uHnodnarB3 жыл бұрын

    I'm doing leetcode looking for jobs right now, and this was really helpful! I actually understood how the algorithm works for once, instead of the video just showing the algorithm working. Thanks!

  • @khushdevpandit5865
    @khushdevpandit5865 Жыл бұрын

    Thanks, man! This is the Best ever explanation on KZread. I was stuck on this algorithm for hours

  • @ghabrielmielli5858
    @ghabrielmielli58583 жыл бұрын

    thank you for this content, it helped me a ton!! I loved how hyped you were explaining this algorithm, great job!

  • @rahulsaxena5015
    @rahulsaxena50154 жыл бұрын

    Now that's a cool explanation of a seemingly difficult concept. The thing is you cannot watch this video without some sort of preparation. You have to understand the limitations of the naive approach and then think of a logical method/alternative to overcome that. Only after that, when you watch the video and implement the algo, would it become clear to you... Good job with the video, guys!!

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    yeah, this video is ok

  • @nono-ip2fv
    @nono-ip2fv4 жыл бұрын

    I really like your passion and felt very involved during the video So far it’s the most approachable KMP video I’ve seen. I vote for keeping the speed and voice as is, they allow the video to stand out in a good way

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    ye

  • @LennethValky19
    @LennethValky194 жыл бұрын

    I love the way you reply literally every single comment in this channel, this shows how much you like what you're doing. And indeed we can see it in your eyes while explaining! Thanks so much for bringing content with such quality and love! I don't usually write comments on KZread but this channel made me stop for some few minutes to write this.

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    I don't like what I'm doing, 70% of the time I hate it. I am just dedicated to whatever I start, it must end successfully at any cost.

  • @LennethValky19

    @LennethValky19

    4 жыл бұрын

    @@BackToBackSWE Hahaha really you don't like it? I was 100% sure you loved it because you put so much energy into explaining the algorithms to us. I guess I was wrong then...

  • @tanmaymalhotra4450
    @tanmaymalhotra44503 жыл бұрын

    people commenting "stop yelling" and all I see is the passion with which you are trying to teach us in the simplest way possible. I came here after watching 2-3 vids but your video cleared all my doubts. Thank you for making this video.

  • @nickkiermaier667
    @nickkiermaier6674 жыл бұрын

    Good lord glad I found you! This is the best explanation I've found! Thank you! Will be following. Don't slow down your enthusiasm makes it fun.

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    ye lol

  • @pulkitjain9599
    @pulkitjain95994 жыл бұрын

    After reading a bit on Internet and then coming to your video. I got it straight into my head. Really well explained but people really need to have some background before watching such algorithms to just grasp it at one go. Thanks man

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    Oh yeah, this video is old and made in an "ok" fashion

  • @vinnerzucc1154
    @vinnerzucc11543 жыл бұрын

    Wow, I applaud your dedication to try and reply to all the comments mate! Good stuff and honestly I should've discovered this channel before!

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    hey

  • @basu.arijit
    @basu.arijit4 жыл бұрын

    This is the first time I understood KMP algorithm. Thanks a lot!

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    nice

  • @supratiksadhu
    @supratiksadhu4 жыл бұрын

    Dude, thanks. That's the most elaborative explanation I came across. Good work!

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    ye

  • @varunrao2135
    @varunrao21354 жыл бұрын

    This is amazing. SO clear. Explain every single part of it.

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    great

  • @kvnr49
    @kvnr494 жыл бұрын

    Like your style of explaining. One of the videos that kept my attention through the end and not bore me to lose focus. Thanks!!

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    great and sure

  • @pablocom
    @pablocom3 жыл бұрын

    Man you are great, all your explanations are deep and clear, thanks for your videos 🙌🙌

  • @LN_1214
    @LN_121410 ай бұрын

    Greatly explained, i saw a couple other videos but yours made me really understand it

  • @PheezxCoding
    @PheezxCoding2 жыл бұрын

    Amazing content. I've been going through your videos and they are so helpful!

  • @theodoraroseti6429
    @theodoraroseti6429Ай бұрын

    Finally, I understand this one! Thank you, you're a hero.

  • @TheJackpotgamer
    @TheJackpotgamer4 жыл бұрын

    I got confused on the topic quite a bit, but this video explains it real clearly, thanks man, this is greatly appreciated

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    this video is ok

  • @Prashantkumar-pn6qq
    @Prashantkumar-pn6qq3 жыл бұрын

    Amazing Amazing explanation buddy! Could not find many on KZread explaining as clearly. Thanks.

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    sure

  • @pranjalshrivstava6519
    @pranjalshrivstava65193 жыл бұрын

    This is the "BEST" explanation of KMP that ever existed!

  • @shivamkumarsingh667
    @shivamkumarsingh667 Жыл бұрын

    Great Video,KMP is now crystal clear to me .Thanks !!! Love from India♥

  • @bryanparis7779
    @bryanparis77792 жыл бұрын

    after lots of videos about Knuth-Morris-Pratt algorithm i just understood how it works...when we have dismatch we just go one step behind and we look at the value of that step and thats it!this is where the i goes(index)..pfff at last!THANKSSSSSSS.LOVE YOU BOY

  • @BackToBackSWE

    @BackToBackSWE

    2 жыл бұрын

    hahaha! try this 5 day free mini course for some good content backtobackswe.com/

  • @bryanparis7779

    @bryanparis7779

    2 жыл бұрын

    @@BackToBackSWE im on my way to this...many thanks from a Greek postgraduate in Maths and Statistics.

  • @jalanshmunshi7061
    @jalanshmunshi70613 жыл бұрын

    Awesome explanation! Don't worry, the way you're explaining is not screaming. It is rather the enthusiasm with which you explain a problem and I have seen that enthusiasm in almost every video of yours. Looking forward to more of your explanations. Kudos to you!

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    thanks

  • @satyadeeproat2012
    @satyadeeproat20124 жыл бұрын

    Whenever I don't understand an algorithm, I come to this page. Dude shout at me like my high school track and field coach, but it definitely gets in my head

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    great to hear - hahahaha, fuck interviews I hate this. No one was going to go and do this and teach in an academic manner that makes sense. We still haven't lived up to the mission/vision I set out with...it's why I get mad...99% of those who understand something won't go teach it, let alone give up their free time and do it for the internet and teach it well. rant

  • @emeryy9345
    @emeryy93452 жыл бұрын

    Having an example and working through it step by step is very helpful

  • @h-arshit
    @h-arshit5 жыл бұрын

    Finally got something worth watching... thanks buddy

  • @BackToBackSWE

    @BackToBackSWE

    5 жыл бұрын

    hahahahaha ok, thx, I want to redo this but yeah

  • @mdotub71
    @mdotub713 жыл бұрын

    Hey dude, thanks for the great vids. I do not know how and why, but somehow your logical explanation of the stuff just rocks compared to many many others. Pls keep doing the good stuff, bro.

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    cuz im average intellect and decided to do all this

  • @priyanshusingh2454
    @priyanshusingh24543 жыл бұрын

    The best explanation all over the internet. Hats off to you sir!

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    sure

  • @sarthakbhatia7888
    @sarthakbhatia78883 жыл бұрын

    Honestly..This is the best explanation out there on youtube....Thanks:)

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    eh

  • @ShivamShukla-uz9xs
    @ShivamShukla-uz9xs4 жыл бұрын

    Really a superb explanation underlined and outlined all components of the algorithm in a very strategic way. The best thing about your videos is the energy you impart over the explanations about the tricky part or sth unintuitive. Thanks.

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    thx

  • @deepakbhoria4172
    @deepakbhoria41723 жыл бұрын

    Didn't understand this during college... but you sir made me understand this within minutes... Great explanation :)

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    great

  • @denys3211
    @denys32115 жыл бұрын

    Great video! Very well explained, as usual. Thank you.

  • @BackToBackSWE

    @BackToBackSWE

    5 жыл бұрын

    haha this vid is decent..old thought too...I wanted to redo it but I never did

  • @avirajbevli7268
    @avirajbevli72683 жыл бұрын

    I like how you personally react to almost all comments. Keep up the good work bro :)

  • @eunjeongchoi5074
    @eunjeongchoi50743 жыл бұрын

    Finally got it!!! Thank you so much!!

  • @joshuanorris3776
    @joshuanorris3776Ай бұрын

    Thank you so much for this! Great video!

  • @insidecode
    @insidecode4 жыл бұрын

    Very nice video! it's also interesting to know that we can consider the time complexity as O(n), because if we add an early exit condition for when p is longer than s (where we directly return -1), then we can affirm that m cannot be greater than n, so in the worst case, m would be equal to n, which gives 2n, and by removing the constant, we get a time complexity of O(n)

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    ye

  • @emmanuel5566
    @emmanuel55662 жыл бұрын

    You've got the gift of explaining the concept

  • @WhisperII
    @WhisperII2 жыл бұрын

    Yay I think I understand it at last, thanks man!

  • @onkarsingh9661
    @onkarsingh96613 жыл бұрын

    Thanks bro best explanation available on internet

  • @anshu7715
    @anshu77152 жыл бұрын

    if there is any topic i am searching on utube nd u have a video on it. i just simply watch it first, and then continue my research(that most of the time is not even needed, as u clear all the related concepts). thanks

  • @abhisheksharma1031
    @abhisheksharma10313 жыл бұрын

    This was awesome man! Finally I understood the algo!

  • @sultanahmed9694
    @sultanahmed96943 жыл бұрын

    You are very confident and good explanation, thanks!

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    Thank you!

  • @RodionKryuchkov
    @RodionKryuchkov3 жыл бұрын

    Thanks man, very good explanation!

  • @vipulkrishna19
    @vipulkrishna194 жыл бұрын

    best Explanation so far on Internet

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    ye

  • @ashwinikumar3721
    @ashwinikumar37214 жыл бұрын

    Finally .... best video to undersand kmp algo clearly

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    thanks - the video is decent

  • @sandyhan4829
    @sandyhan48293 жыл бұрын

    Watched several KMP videos and it is the first one that made me understand

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    great

  • @dataman17
    @dataman173 жыл бұрын

    Best explanation for this question is here! Kudos!

  • @VipinKumar-us1sr
    @VipinKumar-us1sr2 жыл бұрын

    You are becoming my first choice for learning any new algorithm. Keep uploading👍 Hats off👏

  • @BackToBackSWE

    @BackToBackSWE

    2 жыл бұрын

    Thank you, glad you liked it 😀 Do check out backtobackswe.com/platform/content and please recommend us to your family and friends 😀

  • @pei-yaochang3234
    @pei-yaochang32345 жыл бұрын

    Awesome! What a concise explanation.

  • @BackToBackSWE

    @BackToBackSWE

    5 жыл бұрын

    Thanks

  • @dudu2891
    @dudu2891 Жыл бұрын

    I love his energy. Hard to loose focus.

  • @BackToBackSWE

    @BackToBackSWE

    Жыл бұрын

    Happy Holidays! Really glad to help 🎉 Do you know about the 5 Day Free Mini Course? Check it out here - backtobackswe.com/

  • @excerptionexcerption3924
    @excerptionexcerption39242 жыл бұрын

    Perfect explanation. Thank you so much!

  • @BackToBackSWE

    @BackToBackSWE

    2 жыл бұрын

    Thank you, glad you liked it 😀 Do check out backtobackswe.com/platform/content and please recommend us to your family and friends 😀

  • @TonyGognitti
    @TonyGognitti2 жыл бұрын

    Brilliant explanation - certainly one of the best for the KMP algorithm. I like how you focus on the intuition behind the algorithm, as opposed to the traditional textbook approach. Have you considered writing a book on algorithms?

  • @KhanjanShukla
    @KhanjanShukla3 жыл бұрын

    Thanks a lot. Really helped in understanding clearly !

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    sure!

  • @arnabmukherjee5840
    @arnabmukherjee58404 жыл бұрын

    Bro one of the best explanations. I will check all your content. Keep it up

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    great

  • @amanuel2135
    @amanuel21359 ай бұрын

    Goated at explaining advanced algos!

  • @chih-yulin4309
    @chih-yulin43094 жыл бұрын

    It is very helpful than the other long KMP articles.

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    nice

  • @Amir_86
    @Amir_864 жыл бұрын

    Really like the way you explained! thanks man!

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    sure

  • @sunilsarode4295
    @sunilsarode42954 жыл бұрын

    watched at speed 0.75....:)

  • @B85046

    @B85046

    4 жыл бұрын

    Same

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    @@B85046 😭

  • @bmbharathh
    @bmbharathh2 жыл бұрын

    just amazing explanation bro!

  • @nikunjsondawale9403
    @nikunjsondawale94032 жыл бұрын

    it was a great help. Thanks man

  • @s1nghsays
    @s1nghsays Жыл бұрын

    Excellent explanation!

  • @Official-tk3nc
    @Official-tk3nc4 жыл бұрын

    This is the underrated youtube channel on programming

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    nah we are just "rated"

  • @EdwardLawPhD
    @EdwardLawPhD3 жыл бұрын

    Your explanation is the best among many KZreadrs.

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    thx

  • @minakshikudalkar557
    @minakshikudalkar5574 жыл бұрын

    Love your channel!!

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    thanks

  • @subham-raj
    @subham-raj4 жыл бұрын

    Your explanations are *dope*

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    thx.

  • @satakshipal5008
    @satakshipal50082 жыл бұрын

    you explained it so nicely

  • @ketan_sahu
    @ketan_sahu4 жыл бұрын

    It would really be helpful if you also make videos on some mathematical topics like Number Theory, Combinatorics, Modular Arithmetics, and whichever are important for competitive programming. There are very limited videos on the internet available on these topics and most of them are not well explained. Thanking you in advance 💙

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    I would but our focus is on interviews and helping people around that vs competitive programming. I would but we have to pursue our core mission.

  • @FabioMontefuscolo
    @FabioMontefuscolo5 жыл бұрын

    Congratulations, awesome explanation!

  • @BackToBackSWE

    @BackToBackSWE

    5 жыл бұрын

    thanks :)

  • @josephwang2234
    @josephwang22343 жыл бұрын

    OMG, this video is soooo great!!! love it

  • @jintaoguo821
    @jintaoguo8214 жыл бұрын

    Thank your for making KMP really clear

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    sure

  • @ShubhamKumar-rt8nb
    @ShubhamKumar-rt8nb4 жыл бұрын

    you always make me understand even the hardest algorithm

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    ye

  • @HieuNguyen-ty7vw
    @HieuNguyen-ty7vw4 жыл бұрын

    Your video is great! Thank you.

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    thx

  • @arvindg927
    @arvindg9274 жыл бұрын

    i feel yours channel vedios have one solid content for every topic i search every doubt is getting cleared one single veido ..wow thank u soo much bro

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    yes and great.

  • @shariqueshahab
    @shariqueshahab4 жыл бұрын

    Very good explanation, you didn't miss any detail of the Algorithm thats what I liked.

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    ye

  • @ShabnamKhan-cj4zc
    @ShabnamKhan-cj4zc4 жыл бұрын

    Thank you so much such a crystal clear explanation with example..

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    sure

  • @jugmilic2096
    @jugmilic2096Ай бұрын

    ❤Thank you so much❤GOD bless you and your family❤

  • @parikshitr.rajpara5187
    @parikshitr.rajpara51873 жыл бұрын

    best explanation! Loved it!

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    thx

  • @ruhinapatel6530
    @ruhinapatel65303 жыл бұрын

    keep the same pace and enthu..ur making life simple..keep up the way ur doing it...

  • @melihmtl
    @melihmtl5 жыл бұрын

    Nice explanation but I just realized I was holding my breath while watching this video. Just calm down a bit man.

  • @BackToBackSWE

    @BackToBackSWE

    5 жыл бұрын

    hahahahaha, I know: backtobackswe.com/im-sorry

  • @sergten
    @sergten3 жыл бұрын

    It would be nice to elaborate at 11:55 why "i" becomes the value of P[i-1] and not rolls all the way to zero.

  • @arnabpoddar6236

    @arnabpoddar6236

    3 жыл бұрын

    It is a little tricky but I will try, we want to minimize the number of times we roll back to 0. So if there is a miss match,we check if we there is a suffix which is also a prefix in the string we have checked till now, if it is there then we make value of i point at the end of the suffix, which is stored in P[i-1] And if it is not there we directly make i=0. Hope that helps :)

  • @AlienT7
    @AlienT74 жыл бұрын

    Good video!! Look a few other before this one. This is the first one make me understand.

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    great

  • @NikolozVarazashvili
    @NikolozVarazashvili3 жыл бұрын

    Well explained, thanks

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    sure

  • @hermesmercuriustrismegistu4841
    @hermesmercuriustrismegistu48412 жыл бұрын

    thank a lot! great explanation bro!

  • @saumyachauhan2381
    @saumyachauhan23813 жыл бұрын

    Was really having trouble understanding this algo..This helped a lot :-)

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    great

  • @NS-sd3mn
    @NS-sd3mn3 жыл бұрын

    thank u for the explanation.

  • @take3r462
    @take3r4624 жыл бұрын

    Great Explanation, thanks!

  • @BackToBackSWE

    @BackToBackSWE

    4 жыл бұрын

    thx

  • @helenjiayuyi2847
    @helenjiayuyi28473 жыл бұрын

    Great explanation, thank you!

  • @BackToBackSWE

    @BackToBackSWE

    3 жыл бұрын

    sure

Келесі