JAVA! (7 Part Series)
1 I’m going to start a JAVA Series!
2 Master Java: Basics.
… 3 more parts…
3 Java: The datatypes. {}
4 Java: Arrays!
5 Java: Wrapper Class ⭐️
6 Java: Recursion Basics.
7 Java: 4 ways to create a String!
What is recursion?
Recursion is a way to write a program where the function calls itself. A function is called recursive if it calls itself directly or indirectly.
When a function calls itself directly:
void function1(){
.
.
function1();
}
Enter fullscreen mode Exit fullscreen mode
When a function calls itself indirectly:
void function1(){
.
.
function2();
}
void function2(){
.
.
function1();
}
Enter fullscreen mode Exit fullscreen mode
Applications of recursion:
Dynamic programming
Backtracking
Searching algorithms like Binary search
Sorting algorithms like merge sort and quick sort
Tree traversals … etc.
Is recursion better than iteration?
Even though recursion might look like its better than iteration since the length of the code is less, it is the iteration that is always efficient when it comes to the time complexity of the code. This is because, when recursive code is being compiled, the number of arguments in the function call stack increases and this increases the time complexity of the code.
Printing 1 to N using Recursion
class Test{
static void print1toN(int n)
{
if(n==0)
return;
print1toN(n-1);
System.out.print(n+" ");
}
public static void main(String[] args)
{
int n=10;
print1toN(n);
}
}
Enter fullscreen mode Exit fullscreen mode
Printing N to 1 using Recursion
class test{
static void printNto1(int n)
{
if(n==0)
return;
System.out.print(n+" ");
printNto1(n-1);
}
}
public static void main(String args[])
{
int n=10;
PrintNto1(n);
}
Enter fullscreen mode Exit fullscreen mode
Some Recursive problems to explore:
Basic Problems:
- Fibonacci series using recursion
- Sum of natural numbers using recursion
- Palindrome check using recursion
- Sum of digits using recursion
Advanced Problems:
- Tower of Hanoi
- Rod cutting problem
- Josephus problem
To get good at recursion, practice is the key. After a significant amount of practice, you’ll easily recognize the questions that you can solve using recursion!
To start off, you can practice the above-listed problems on GeeksforGeeks or Leetcode.
… to be continued
keep learning, keep coding!
JAVA! (7 Part Series)
1 I’m going to start a JAVA Series!
2 Master Java: Basics.
… 3 more parts…
3 Java: The datatypes. {}
4 Java: Arrays!
5 Java: Wrapper Class ⭐️
6 Java: Recursion Basics.
7 Java: 4 ways to create a String!
暂无评论内容