Skip to content

Instantly share code, notes, and snippets.

@igorvolnyi
Created June 8, 2016 12:50
Show Gist options
  • Save igorvolnyi/31687f89d8fd22999a399feacce78350 to your computer and use it in GitHub Desktop.
Save igorvolnyi/31687f89d8fd22999a399feacce78350 to your computer and use it in GitHub Desktop.
/**
* Algirithm: reverse string using recursion.
* Complexity: O(n)
*/
public class ReverseStringRecurse {
public String reverse(String str) {
if(str == null || str.length() < 2)
return str;
return reverse(str.substring(1)) + str.charAt(0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment