Longest Prefix Suffix | String Matching(KMP) | GFG POTD | Dry Run & Explanation

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ม.ค. 2025

ความคิดเห็น • 1

  • @Veom03
    @Veom03  3 หลายเดือนก่อน

    If You Like the Video then Plzz Consider Subscribing ☺.
    CODE:
    class Solution {
    public:
    int lps(string str) {
    vector LPS(str.size(),0);
    int length = 0;
    LPS[0] = 0;
    for(int i=1;i