Tweaks
[cas-master-teacher-training.git] / programming.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Programming strategy</title>
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6 <style type="text/css">
7 /* Slideshow styles */
8 body {
9 font-size: 20px;
10 }
11 h1, h2, h3 {
12 font-weight: 400;
13 margin-bottom: 0;
14 }
15 h1 { font-size: 3em; }
16 h2 { font-size: 2em; }
17 h3 { font-size: 1.6em; }
18 a, a > code {
19 text-decoration: none;
20 }
21 code {
22 -moz-border-radius: 5px;
23 -web-border-radius: 5px;
24 background: #e7e8e2;
25 border-radius: 5px;
26 font-size: 16px;
27 }
28 .plaintext {
29 background: #272822;
30 color: #80ff80;
31 text-shadow: 0 0 20px #333;
32 padding: 2px 5px;
33 }
34 .ciphertext {
35 background: #272822;
36 color: #ff6666;
37 text-shadow: 0 0 20px #333;
38 padding: 2px 5px;
39 }
40 .indexlink {
41 position: absolute;
42 bottom: 1em;
43 left: 1em;
44 }
45 .float-right {
46 float: right;
47 }
48 </style>
49 </head>
50 <body>
51 <textarea id="source">
52
53 # Programming strategy
54
55 ## Moving up a level
56
57 Data structures
58
59 Algorithms
60
61 Seeing alternatives
62
63 ---
64
65 layout: true
66
67 .indexlink[[Index](index.html)]
68
69 ---
70
71 # Data structures before algorithms
72
73 * What data do you need?
74 * What operations must you perform on it?
75
76 These go a long way to defining the algorithms you must use.
77
78 ## Python built-in types
79
80 * Numbers (float and integer)
81 * Strings
82 * Tuples
83 * Lists
84 * Dictionaries (a.k.a. hashes or maps)
85
86 Many tasks will fit into these
87
88 More in the `collections` standard library, such as `namedtuple` and `Counter`
89
90 ---
91
92 # String
93
94 * Immutable in Python
95 * Single or double quotes (beware apostrophies)
96 * Triple-quoted contain newlines
97
98 ```python
99 'This is a string'
100 ```
101 ```python
102 "This isn't a problem"
103 ```
104 ```python
105 """This is
106 a multiline
107 string"""
108 ```
109
110 ---
111 # Tuple
112
113 * Immutable in Python
114 * Fixed-size collection
115 * Indexed by position
116
117 ```python
118 neil = ('Neil', 'Smith', 44)
119 first_name = neil[0]
120 surname = neil[1]
121 ```
122
123 * Unpacking with assignment
124
125 ```python
126 first_name, surname, age = neil
127 ```
128
129 ```python
130 for _, surname, age in people:
131 ....
132 ```
133
134 ---
135
136 # List
137
138 * Ordered collection
139 * Mutable
140 * Index by position and slices
141
142 ```python
143 members = ['Freddie', 'Brian', 'Roger', 'John']
144 print(members[1])
145 print(members[1:2])
146 print(members[1:3])
147 print(members[1:1])
148 print(members[-1])
149 print(members[2:])
150 print(members[:2])
151 ```
152
153 ---
154 # Lists: beware copy depth!
155
156 ```python
157 members = ['Freddie', 'Brian', 'Roger', 'John']
158 tour_lineup = members
159 tour_lineup[0] = 'Paul'
160 print(tour_lineup)
161 print(members)
162 ```
163
164 ---
165
166 # Copying a list
167
168 ```python
169 tour_lineup = members[:]
170 ```
171
172 ```python
173 tour_lineup = list(members)
174 ```
175
176 ```python
177 import copy
178 tour_lineup = copy.copy(members)
179 tour_lineup = copy.deepcopy(members)
180 ```
181
182 `==` tests value equality; `is` tests object identity
183
184 ```python
185 members = ['Freddie', 'Brian', 'Roger', 'John']
186 tour_lineup = members[:]
187 tour_lineup == members
188 tour_lineup is members
189 ```
190
191 ## Value vs Reference
192
193 Must be part of your mental model
194
195 ---
196
197 # Dicts
198
199 * A set of key-value pairs
200 * Mutable
201 * Items in arbirary order
202 * In Python, can use any immutable type as the key
203 * Use any type as the value
204
205 ```python
206 neil = {'first_name': 'Neil', 'surname': 'Smith', 'age': 44}
207 neil['surname']
208 ```
209
210 ---
211 # Euler 11
212
213 ```python
214 GRID_STRING = """08 02 22 97 38 15 00 40 00 75 04 05 07 78 52 12 50 77 91 08
215 49 49 99 40 17 81 18 57 60 87 17 40 98 43 69 48 04 56 62 00
216 81 49 31 73 55 79 14 29 93 71 40 67 53 88 30 03 49 13 36 65
217 52 70 95 23 04 60 11 42 69 24 68 56 01 32 56 71 37 02 36 91
218 22 31 16 71 51 67 63 89 41 92 36 54 22 40 40 28 66 33 13 80
219 24 47 32 60 99 03 45 02 44 75 33 53 78 36 84 20 35 17 12 50
220 32 98 81 28 64 23 67 10 26 38 40 67 59 54 70 66 18 38 64 70
221 67 26 20 68 02 62 12 20 95 63 94 39 63 08 40 91 66 49 94 21
222 24 55 58 05 66 73 99 26 97 17 78 78 96 83 14 88 34 89 63 72
223 21 36 23 09 75 00 76 44 20 45 35 14 00 61 33 97 34 31 33 95
224 78 17 53 28 22 75 31 67 15 94 03 80 04 62 16 14 09 53 56 92
225 16 39 05 42 96 35 31 47 55 58 88 24 00 17 54 24 36 29 85 57
226 86 56 00 48 35 71 89 07 05 44 44 37 44 60 21 58 51 54 17 58
227 19 80 81 68 05 94 47 69 28 73 92 13 86 52 17 77 04 89 55 40
228 04 52 08 83 97 35 99 16 07 97 57 32 16 26 26 79 33 27 98 66
229 88 36 68 87 57 62 20 72 03 46 33 67 46 55 12 32 63 93 53 69
230 04 42 16 73 38 25 39 11 24 94 72 18 08 46 29 32 40 62 76 36
231 20 69 36 41 72 30 23 88 34 62 99 69 82 67 59 85 74 04 36 16
232 20 73 35 29 78 31 90 01 74 31 49 71 48 86 81 16 23 57 05 54
233 01 70 54 71 83 51 54 69 16 92 33 48 61 43 52 01 89 19 67 48"""
234 ```
235
236 How many data structures can you think of for this puzzle?
237
238 ---
239
240 # Euler 11 structures
241
242 * List of lists: either a list of rows or a list of columns
243 * One large list, find a number by row × 20 + column
244 * Tuple of tuples, one large tuple, list of tuples, tuple of lists...
245 * Dict with keys as (row, column)
246 * Keep it as a string: `int(row * 20 + column) * 3)`
247 * (Beware when joining rows)
248 * List of strings, tuple of strings, dict of strings...
249
250 ---
251
252 # Comprehensions
253
254 Do something to each element of an iterable, returning a sequence of the results
255
256 * Iterable: anything you can use as `for item in iterable`
257 * Sequence: `tuple`, `list`, `dict`
258
259 Examples:
260
261 * List of numbers: `[i for i in range(10)]`
262 * List of squares: `[i ** 2 for i in range(10)]`
263 * List of numbers from a string: `[int(n) for n in str.split()]`
264 * Numbers and their squares: `{i: i ** 2 for i in range(10)}`
265 * Even numbers and their squares: `{i: i ** 2 for i in range(10) if i % 2 == 0}`
266
267 ---
268 # Comprehensions with multiple sequences
269
270 All the numbers in the Euler 11 grid:
271 ```python
272 [n for row in grid for n in row]
273 ```
274
275 Pythagorean triples:
276 <table>
277 <tr valign="top">
278 <td>
279 ```python
280 [(a, b, c)
281 for a in range(1, 21)
282 for b in range(1, 21)
283 for c in range(1, 21)
284 if a &lt;= b
285 if b &lt;= c
286 if a**2 + b**2 == c**2]
287 ```
288 </td>
289 <td>
290 ```python
291 [(a, b, c)
292 for a in range(1, 21)
293 for b in range(a, 21)
294 for c in range(b, 21)
295 if a**2 + b**2 == c**2]
296 ```
297 </td>
298 <td>
299 ```python
300 [(a, b, int((a**2 + b**2)**0.5))
301 for a in range(1, 21)
302 for b in range(a, 21)
303 if int((a**2 + b**2)**0.5) == (a**2 + b**2)**0.5]
304 ```
305 </td>
306 </tr></table>
307
308 ---
309
310 # Task
311
312 Turn the Euler 11 grid into:
313
314 * A list of lists, as a list of rows
315 * A dict with keys of (x, y)
316
317 Do both with explicit iteration, then using only comprehensions.
318
319 ```python
320 grid_nums = [int(n) for n in GRID_STRING.split()]
321 ```
322
323 ---
324
325 # Solutions with explicit loops
326
327 ```python
328 g1 = []
329 for rowstart in range(0, ROWS * COLUMNS, COLUMNS):
330 g1.append(grid_nums[rowstart:rowstart+COLUMNS])
331
332 # g1[row][column]
333 ```
334
335 ```python
336 g2 = {}
337 for x in range(COLUMNS):
338 for y in range(ROWS):
339 g2[(x, y)] = grid_nums[x + y * COLUMNS]
340
341 # g2[(x, y)]
342 ```
343
344 Note the need for the creation of the empty container
345
346 ---
347
348 # Solutions with comprehensions
349
350 ```python
351 g3 = [grid_nums[row * COLUMNS:(row+1) * COLUMNS]
352 for row in range(ROWS)]
353
354 # g3[row][column]
355 ```
356
357 ```python
358 g4 = {(x, y): grid_nums[x + y * COLUMNS]
359 for x in range(COLUMNS)
360 for y in range(ROWS)}
361
362 # g4[(x, y)]
363 ```
364
365 ```python
366 g4s = {(x, y): int(GRID_STRING[(x + y * COLUMNS) * 3:(x + y * COLUMNS) * 3 + 2])
367 for x in range(COLUMNS)
368 for y in range(ROWS)}
369
370 # g4s[(x, y)]
371 ```
372
373 ---
374
375 # Other Python data structures
376
377 ## Set
378 Unordered, mutable, no duplicates
379
380 * Useful for removing duplicates from sequences: `list(set(items))`
381
382 ---
383 # collections.defaultdict
384 Like a dict, but doesn't throw an error if you ask for missing key
385
386 ```python
387 >>> d = {}
388 >>> d[99]
389 Traceback (most recent call last):
390 File "<stdin>", line 1, in <module>
391 KeyError: 99
392 >>> import collections
393 >>> d = collections.defaultdict(int)
394 >>> d[99]
395 0
396 ```
397
398 ---
399
400 # collections.Counter
401 Counts items in a sequence:
402
403 ```python
404 collections.Counter(l for l in open('sherlock-holmes.txt').read()
405 if l in string.ascii_letters)
406 ```
407
408 ---
409
410 # collections.namedtuple
411 Dumb `object` for just storing data in named fields
412
413 ```python
414 Point = collections.namedtuple('Point', ['x', 'y'])
415 p = Point(11, y=22)
416 p[0] + p[1]
417 x, y = p
418 p.x + p.y
419 ```
420
421 ---
422
423 # Data, not algorithms
424
425 Don't put complex, changable logic into code
426
427 Build a data structure that describes it, code that reads it.
428
429 * Euler 11 directions
430 * Multiple choice quiz
431
432 ---
433
434 # Algorithms: trading space for time
435
436 ## Euler 14
437
438 </textarea>
439 <script src="http://gnab.github.io/remark/downloads/remark-0.6.0.min.js" type="text/javascript">
440 </script>
441
442 <script type="text/javascript"
443 src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&delayStartupUntil=configured"></script>
444
445 <script type="text/javascript">
446 var slideshow = remark.create({ ratio: "16:9" });
447
448 // Setup MathJax
449 MathJax.Hub.Config({
450 tex2jax: {
451 skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
452 }
453 });
454 MathJax.Hub.Queue(function() {
455 $(MathJax.Hub.getAllJax()).map(function(index, elem) {
456 return(elem.SourceElement());
457 }).parent().addClass('has-jax');
458 });
459 MathJax.Hub.Configured();
460 </script>
461 </body>
462 </html>