Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upString Matcher Added #1393
String Matcher Added #1393
Conversation
@@ -0,0 +1,76 @@ | |||
package StringMatch; |
deadshotsb
Aug 6, 2020
Member
Kindly add a desciption to each solution for better understanding.
It will be better if you add the StringMatch inside a String Algo folder.
Kindly add a desciption to each solution for better understanding.
It will be better if you add the StringMatch inside a String Algo folder.
} | ||
|
||
//helper to stringMatcher | ||
//calculates prefix function |
afadhitya
Aug 7, 2020
Please use the javadoc convention
Please use the javadoc convention
return new ArrayList<>(); | ||
} | ||
|
||
static void matchPrint(String text, String pattern) { |
afadhitya
Aug 7, 2020
Please delete this if the method body is empty
Please delete this if the method body is empty
return result; | ||
} | ||
|
||
//there must not be object of this class |
afadhitya
Aug 7, 2020
Please use javadoc convention
Please use javadoc convention
Added Naive and the Knuth–Morris–Pratt string-searching algorithm with Javadoc