Question: * 2 2 . 3 ( Pattern matching ) Write an O ( n ) time program that prompts the user to enter two strings

*22.3(Pattern matching) Write an O(n) time program that prompts the user to enter two strings and tests whether the second string is a substring of the first string. Suppose the neighboring characters in the string are distinct. (Don't use the indexOf method in the String class.)
Sample Run for Exercise22_03.java
Enter input data for the program (Sample data provided below. You may modify it.)
Welcome to Java
come
Show the Sample Output Using the Preceeding Input
Execution Result:
JDK8>java Exercise22_03
Enter a string s1: Welcome to Java
Enter a string s2: come
matched at index 3
JDK8>
* 2 2 . 3 ( Pattern matching ) Write an O ( n )

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!