2022-11-29 15:21:48 +01:00
|
|
|
---
|
2023-12-23 13:52:17 +01:00
|
|
|
id: karel
|
|
|
|
slug: /recursion/karel
|
2022-11-29 15:21:48 +01:00
|
|
|
title: Recursion and backtracking with Robot Karel
|
|
|
|
description: |
|
|
|
|
A problem with too many restrictions.
|
|
|
|
tags:
|
2023-11-24 16:00:45 +01:00
|
|
|
- python
|
|
|
|
- karel
|
|
|
|
- recursion
|
|
|
|
- backtracking
|
2023-08-15 17:27:16 +02:00
|
|
|
last_update:
|
|
|
|
date: 2022-11-29
|
2022-11-29 15:21:48 +01:00
|
|
|
---
|
|
|
|
|
2023-11-24 16:00:45 +01:00
|
|
|
- [Sources](pathname:///files/algorithms/recursion/karel-1.tar.gz)
|
2022-11-29 15:21:48 +01:00
|
|
|
|
|
|
|
## Introduction
|
|
|
|
|
|
|
|
In this exercise we will be working with a Robot Karel and with a »very« limited
|
|
|
|
resources. The point of this exercise is to show how powerful recursion and
|
|
|
|
backtracking can be even without anything else at your hand.
|
|
|
|
|
|
|
|
## Your environment and problem description
|
|
|
|
|
|
|
|
### Environment
|
|
|
|
|
|
|
|
You are given a robot that is present in a maze and is looking for an exit. Maze
|
2023-07-18 21:59:10 +02:00
|
|
|
consists of different walls and exit is marked with a single so-called “beeper”.
|
2022-11-29 15:21:48 +01:00
|
|
|
|
|
|
|
Walking into a wall results in a permanent damage of the robot.
|
|
|
|
|
|
|
|
### Interface
|
|
|
|
|
|
|
|
You can control the robot using the following interface:
|
|
|
|
|
|
|
|
- actions — you can use them to change the current state of the robot and its
|
|
|
|
surroundings
|
|
|
|
- `robot.step()` — moves robot one step further
|
|
|
|
- `robot.turn_left()` — turns robot 90-degrees counter-clockwise
|
|
|
|
- notice that you are not given `turn_right` or `turn_around`, but feel free
|
|
|
|
to implement them yourself
|
|
|
|
- `robot.pick_beeper()` and opposite operation `robot.put_beeper()` — that
|
2023-07-18 21:59:10 +02:00
|
|
|
allows you to either pick or put “beeper” from or onto the current position
|
2022-11-29 15:21:48 +01:00
|
|
|
- queries — you can use them to check the current state of the robot and its
|
|
|
|
surroundings
|
|
|
|
- `robot.beepers_present()` — to check if there are any beepers at the robot's
|
|
|
|
current location
|
|
|
|
- `robot.left_is_clear()` — to check if you can step to the left
|
|
|
|
- analogically for `front` and `right`
|
|
|
|
|
|
|
|
:::caution
|
|
|
|
|
|
|
|
Helper functions / procedures are allowed. Return values are allowed.
|
|
|
|
|
|
|
|
**Variables are prohibited!**
|
|
|
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
### Problem
|
|
|
|
|
|
|
|
Your task is to decide whether there is an exit from the maze or not. You can see
|
|
|
|
an example of a maze here:
|
|
|
|
|
2022-11-29 17:58:39 +01:00
|
|
|
![Image of the maze](/img/ib002/karel-1/maze.png)
|
2022-11-29 15:21:48 +01:00
|
|
|
|
|
|
|
## Simple problem to get familiar with the robot
|
|
|
|
|
|
|
|
If you feel completely lost after the previous description, let me start you off
|
|
|
|
with a simpler problem.
|
|
|
|
|
|
|
|
You are standing in front of the stairs, your task is to walk up the stairs.
|
|
|
|
|
|
|
|
You can see an example of such map here:
|
|
|
|
|
2022-11-29 17:58:39 +01:00
|
|
|
![Image of the stairs](/img/ib002/karel-1/stairs.png)
|
2022-11-29 15:21:48 +01:00
|
|
|
|
|
|
|
## Brainstorm the idea
|
|
|
|
|
|
|
|
As a first step write down any ideas and things that you have noticed or came to
|
|
|
|
your mind. Ideally:
|
|
|
|
|
2023-11-24 18:27:32 +01:00
|
|
|
1. Write down a nested list of the problems
|
|
|
|
2. Write down list of problems that can happen
|
|
|
|
3. Write down **anything** you consider important to solving the problem
|
2022-11-29 15:21:48 +01:00
|
|
|
|
2023-11-24 18:27:32 +01:00
|
|
|
:::tip Example
|
2022-11-29 15:21:48 +01:00
|
|
|
|
2023-11-24 18:27:32 +01:00
|
|
|
**Problem**: I want to find out whether the display on smartphone should rotate.
|
2022-11-29 15:21:48 +01:00
|
|
|
|
2023-11-24 18:27:32 +01:00
|
|
|
- nested list of problems
|
2022-11-29 15:21:48 +01:00
|
|
|
- Check if display has been rotated
|
|
|
|
- Read data from some sensor
|
|
|
|
- From what sensor
|
|
|
|
- In what format are the data I have read?
|
|
|
|
- How do I communicate with the sensor?
|
|
|
|
- What is the meaning of the data that I got?
|
|
|
|
- How can I process it?
|
2023-11-24 18:27:32 +01:00
|
|
|
- any problems that can happen
|
2022-11-29 15:21:48 +01:00
|
|
|
- What if the sensor doesn't work?
|
|
|
|
- What if the data doesn't conform to the specification?
|
|
|
|
- What if my formulas are wrong?
|
2023-11-24 18:27:32 +01:00
|
|
|
- anything important
|
2022-11-29 15:21:48 +01:00
|
|
|
- I could probably use gyroscope.
|
|
|
|
- I should probably look up the datasheet for that module.
|
|
|
|
- I could write some tests to verify that my computations are correct.
|
|
|
|
|
2023-11-24 18:27:32 +01:00
|
|
|
:::
|
2022-11-29 15:21:48 +01:00
|
|
|
|
|
|
|
## »Rough« pseudocode
|
|
|
|
|
|
|
|
As a next step write a **mock up** of a pseudocode solving the problem, you are
|
|
|
|
allowed to use comments as placeholders for bigger chunks of code.
|
|
|
|
|
|
|
|
Those comments are also a very good hints for decomposition and short, but
|
|
|
|
descriptive, commnets (if they are short enough and you decide not to factor them
|
|
|
|
out to separate functions).
|
|
|
|
|
|
|
|
:::tip
|
|
|
|
|
|
|
|
The smaller the function is, the easier it is to test it and argue about its
|
|
|
|
correctness.
|
|
|
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
## »Proper« pseudocode
|
|
|
|
|
|
|
|
If you are satisfied with the _»rough« pseudocode_, it's time to convert it into
|
|
|
|
a proper one. Get rid of the uncertain pieces of functionality and replace them
|
|
|
|
with proper pseudocode, i.e. list of the things that should happen in its place.
|
|
|
|
|
|
|
|
## Library
|
|
|
|
|
|
|
|
If you got here, and you **actually** wrote down the pseudocode, you can try your
|
|
|
|
solution after downloading the sources linked at the beginning. If you download
|
|
|
|
the ZIP-file, you can there:
|
|
|
|
|
|
|
|
- `generate_mazes.py` - that was used to generate the same maze with beepers in
|
|
|
|
different locations
|
|
|
|
- `karel_tk.py` - library which can run Karel given the his world
|
|
|
|
- documentation can be found [here](https://www.fi.muni.cz/~xfocko/ib111/10/docs/)
|
|
|
|
- also requires Tk Python library to be installed (it should be included in
|
|
|
|
majority of Python installations)
|
|
|
|
- `*.kw` - which represent multiple worlds for Karel I have prepared
|
|
|
|
- `skeleton.py` - skeleton for your solution, needs to be put in the same directory
|
|
|
|
as `karel_tk.py` and takes path to the world as a first argument, example usage:
|
|
|
|
|
2023-11-24 18:27:32 +01:00
|
|
|
```
|
|
|
|
$ python3 skeleton.py stairs.kw
|
|
|
|
```
|
2022-11-29 15:21:48 +01:00
|
|
|
|
|
|
|
- of course, this file can be renamed ;)
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
|
|
|
|
Solution to this problem will be released as a second part, so that you can try
|
2023-07-18 21:59:10 +02:00
|
|
|
it out by yourself without any influence of “example solution”.
|
2022-11-29 15:21:48 +01:00
|
|
|
|
|
|
|
If you want to get any feedback, feel free to mail me your solution (including
|
|
|
|
all the steps that lead to your final solution, if you wish to get feedback on
|
2023-11-24 16:00:45 +01:00
|
|
|
those too).
|