User Tools

Site Tools


Sidebar

projects

ntr0 (due 20200826)
pct1 (bonus; due 20200819)
wcp1 (due 20200819)
ael0 (due 20200826)
pct2 (due 20200826)
wcp2 (due 20200826)
sln0 (due 20200902)
pct3 (bonus; due 20200902)
wcp3 (due 20200902)
sln1 (due 20200909)
pct4 (bonus; due 20200909)
wcp4 (due 20200909)
sll0 (due 20200916)
pct5 (bonus; due 20200916)
wcp5 (due 20200916)
sll1 (due 20200923)
pct6 (due 20200923)
wcp6 (due 20200923)
sll2 (due 20200930)
pct7 (bonus; due 20200930)
wcp7 (due 20200930)
sll3 (due 20201007)
sll4 (due 20201007)
pct8 (due 20201007)
wcp8 (due 20201007)
dln0 (due 20201014)
dll0 (due 20201014)
gfo0 (due 20201014)
pct9 (bonus; due 20201014)
wcp9 (due 20201014)
dll1 (due 20201021)
pctA (due 20201021)
wcpA (due 20201021)
dll2 (due 20201028)
dls0 (due 20201028)
pctB (bonus; due 20201028)
wcpB (due 20201028)
dlq0 (due 20201104)
pctC (due 20201104)
wcpC (due 20201104)
pctD (bonus; due 20201111)
wcpD (bonus; due 20201111)
pctE (bonus; due 20201118)
wcpE (bonus; due 20201118)
eoce (due 20201125)
haas:fall2020:data:projects:sll2:paradigms

Solution Paradigms

Recursion

Recursion is the effective calling (and nesting) of the same function over and over again to derive the solution (i.e. the work is accomplished through each successive function call).

Recursion is often considered more elegant, yet less efficient (the underlying work the computer must perform tends to be greater).

Here is an example of recursion to compute the sum of the first 10 integers (0-9):

1
#include <stdio.h>
 
int increment(int, int);
 
int main()
{
        int i = 0;
        int sum = 0;
 
        sum = increment(i, 10);
 
        fprintf(stdout, "sum is: %d\n", sum);
 
        return(0);
}
 
int increment(int value, int max)
{
        if (value < (max - 1))
                value = value + increment(value+1, max);
 
        return(value);
}

This program, when executed, will output:

$ ./recursion
sum is: 45
$ 

Iteration

On the other hand, iteration is more in line with how we're used to thinking (step by step, with each detail more tangible). The computer tends to work more in an iterative fashion, although solutions done iteratively may not appear as elegant as under other forms (recursion).

Here is an example of iteration to compute the sum of the first 10 integers (0-9):

1
#include <stdio.h>
 
int main()
{
        int i = 0;
        int sum = 0;
 
        for(i = 0; i < 10; i++)
                sum = sum + i;
 
        fprintf(stdout, "sum is: %d\n", sum);
 
        return(0);
}

This program, when executed, will output:

$ ./iteration
sum is: 45
$ 

Perspective

Recursion, like the use of pointers, structs, inheritance, polymorphism, etc. really lends itself well to larger, more complicated problems.

In the current setting, the iterative example likely looks far simpler (less code overall). This in no way implies recursion is inferior, as outside of potential performance issues, it is an effective way to solve problems, and being able to think recursively can improve one's problem solving skills overall.

haas/fall2020/data/projects/sll2/paradigms.txt · Last modified: 2015/10/15 21:11 by 127.0.0.1