Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Now suppose we want to find the positions of all matches. Here is a plan, using the findNext method of the preceding problem: Allocate a
Now suppose we want to find the positions of all matches. Here is a plan, using the findNext method of the preceding problem:
Allocate a partially filled array result.
While findNext returns a valid position
Insert the position to the end of result.
Copy result into an array whose length equals the number of matches.
Return that copy.
See the "Copying Arrays" subsection of the "Common Array Algorithms" section for copying an array. Note that if there are no matches, the Arrays.copyOf method will yield an array of length Complete the following code.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started