قاسم اللبناني قام بنشر يوليو 11, 2022 قام بنشر يوليو 11, 2022 بالامكان اساتذتي الكرام تتكرموا بتوضيح كود خوارزمية التعرف على النصوص // Java Implementation // Knuth - Morris - Pratt Algorithm class JavaKMP { public static void main (String args[]) { JavaKMP kmp = new JavaKMP("aaabaaaabaaaaab"); System.out.println("Find (aaaaa) At Index : " + kmp.search("aaaaa") ); } public JavaKMP () { mText = "" ; mPattern = "" ; } public JavaKMP (String txt) { mText = txt ; mPattern = "" ; } public JavaKMP (String txt, String pattern) { mText = txt ; mPattern = pattern ; } public int search() { return search(mText,mPattern) ; } public int search(String pattern) { return search(mText,pattern) ; } public int search(String text , String pattern) { int prefixArray[] = new int[pattern.length()]; initializeToZero(prefixArray,pattern.length()); preProcessing(pattern,prefixArray); int i = 0 , match = 0 ; while ( i < text.length() ) { if ( text.charAt(i) == pattern.charAt(match) ) { match++ ; if ( match == pattern.length() ) return i
Moosak قام بنشر يوليو 11, 2022 قام بنشر يوليو 11, 2022 (معدل) جرب هذا أخي قاسم 🙂 وأضن أن هذا الكود مكتوب بلغة الجافا تم تعديل يوليو 11, 2022 بواسطه Moosak
الردود الموصى بها
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.