मराठी
तामिळनाडू बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान इयत्ता ११

What is recursive problem-solving? - Computer Science

Advertisements
Advertisements

प्रश्न

What is recursive problem-solving?

टीपा लिहा

उत्तर

Recursion is a method of solving problems that involves breaking a problem down into smaller and smaller sub-problems until the user gets into a small problem that can be solved trivially. Usually, recursion involves a function calling itself. While it may not seem like much on the surface, recursion allows us to write elegant solutions to problems that may otherwise be very difficult to program.

shaalaa.com
Recursion
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 8: Iteration and recursion - Evaluation - Section - B [पृष्ठ ११४]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 11 TN Board
पाठ 8 Iteration and recursion
Evaluation - Section - B | Q 5. | पृष्ठ ११४

संबंधित प्रश्‍न

If the Fibonacci number is defined recursively as F(n) = `{(0, "n" = 0), (1, "n" = 1), ("F"("n" - 1),+  "F"("n" - 2) "otherwise"):}` 
to evaluate F(4), how many times F() is applied?


Using this recursive definition

`"a"^"n" = {(1, "if"  "n" = 0), ("a" × "a"^("n" - 1), "otherwise"):}`

how many multiplications are needed to calculate a10?


Define factorial of a natural number recursively.


Power can also be defined recursively as

`"a"^"n" = {(1, "if"  "n" = 0), ("a" × "a"^("n" - 1), "if n is odd"), ("a"^("n""/"2) × "a"^("n""/"2), "if n is even"):}`

Construct a recursive algorithm using this definition. How many multiplications are needed to calculate a10?


A single-square-covered board is a board of 2n x 2n squares in which one square is covered with a single square tile. Show that it is possible to cover this board with triominoes without overlap.


Give one reason, why iteration is better than recursion.


Differentiate between direct recursion and indirect recursion.


The following function task() is a part of some class. Assume ‘m’ and ‘n’ are positive integers greater than 0. Answer the questions given below along with dry / run working.

int task(int m, int n)
{ if(m=n)
      return m;
else if (m>n)
      return task(m-n, n);
else
     return task(m, n-m)
}
  1. What will the function task() return when the value of m=30 and n=45?
  2. What function does task() perform, apart from recursion?

Assertion: Recursion utilises more memory as compared to iteration.

Reason: Time complexity of recursion is higher due to the overhead of maintaining the function call stack.


Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×