Grokking Algorithms



Yüklə 348,95 Kb.
Pdf görüntüsü
səhifə26/122
tarix05.12.2023
ölçüsü348,95 Kb.
#173611
1   ...   22   23   24   25   26   27   28   29   ...   122
grokking-algorithms-illustrated-programmers-curious

Chapter 3
 
 
I
 
 
Recursion
This chapter also includes a lot of pseudocode. 
Pseudocode
is a
high-level description of the problem you’re trying to solve, in code.
It’s written like code, but it’s meant to be closer to human speech.
Recursion
Suppose you’re digging through your grandma’s attic and come across a 
mysterious locked suitcase.
Grandma tells you that the key for the suitcase is probably in this
other box.
This box contains more boxes, with more boxes inside those boxes. The 
key is in a box somewhere. What’s your algorithm to search for the key? 
Think of an algorithm before you read on.


39
Recursion
Here’s one approach.
1. Make a pile of boxes to look through.
2. Grab a box, and look through it.
3. If you find a box, add it to the pile to look through later.
4. If you find a key, you’re done!
5. Repeat.
Here’s an alternate approach.
1. Look through the box.
2. If you find a box, go to step 1.
3. If you find a key, you’re done!


40
Chapter 3
 
 
I
 
 
Recursion
Which approach seems easier to you? The first approach uses a 
while
loop. While the pile isn’t empty, grab a box and look through it:
def look_for_key(main_box):
pile = main_box.make_a_pile_to_look_through()
while pile is not empty:
box = pile.grab_a_box()
for item in box:
if item.is_a_box():
pile.append(item)
elif item.is_a_key():
print “found the key!”
The second way uses recursion. 
Recursion 
is where a function calls itself. 
Here’s the second way in pseudocode:

Yüklə 348,95 Kb.

Dostları ilə paylaş:
1   ...   22   23   24   25   26   27   28   29   ...   122




Verilənlər bazası müəlliflik hüququ ilə müdafiə olunur ©azkurs.org 2024
rəhbərliyinə müraciət

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin