| preferred AP College board partner for AP classes
AP Computer Science A/Unit 10: Recursion
Start Practice TestPractice Test
About Exam
hard Solved by 1 students
Recursive String Reverse Complexity
< Prev
Next >

What is the time complexity of the recursive reverse method shown above?

public String reverse(String s) {
    if(s.length() <= 1) return s;
    return reverse(s.substring(1)) + s.charAt(0);
}
A

O(n^2)

B

O(n)

C

O(2^n)

D

O(n log n)

Hint
Did You Know?
Explain Why
Explain All Answers
Check Answer
Show Correct Answer
Report Question

Question Leaderboard

Not enough data yet to show leaderboard.

No comments yet. Be the first to comment!

AI Tutor

How can I help?

APFIVE © 2020.
Email: [email protected]|Privacy Policy