-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1_old.html
887 lines (772 loc) · 33.1 KB
/
1_old.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/superblack.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/monokai.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match(/print-pdf/gi) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName('head')[0].appendChild(link);
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Функциональное программирование</h2>
<aside class="notes" data-markdown>
Функциональное программирование это не про использование map filter reduce.
Функциональное программирование это вообще ортогонально к ооп.
ИМХО проблема с ООП -- наследование (которое тоже ортогонально к ООП) -- нет разграничения между абстракцией и
реализацией.
и вообще обзывание это функциональным программированием -- не совсем правильно.
то, что мы сейчас будем пытаться сделать -- сделать код более переиспользуемым.
сделать наши данные максимально тупыми => переиспользуемыми.
пытаться комбинировать слишком умные куски -- не получится -- слишком сложно.
мы хотим сделать простые куски, которые просто комбинировать и еще чтобы компилятор проверял эти наши
комбинации на валидность.
</aside>
</section>
<section data-markdown>
Функциональное программирование:
> функции -- это тоже данные.
`Int -> Bool` (функция) -- ровно такие же данные как и `Int`. Их также можно складывать в структуры,
передавать как аргументы и т. п.
</section>
<section>
<section>
<h1>нотация</h1>
</section>
<section>
<table width="100%">
<tr>
<td>
<pre>
<code class="java">int x;</code>
</pre>
</td>
<td>
<pre>
<code class="haskell">x :: Int</code>
</pre>
</td>
</tr>
<tr class="fragment">
<td>
<pre>
<code class="java">int f(int x)</code>
</pre>
</td>
<td>
<pre>
<code class="haskell">f :: Int -> Int</code>
</pre>
</td>
</tr>
<tr class="fragment">
<td>
<pre>
<code class="java">static <T> T f(T x)</code>
</pre>
</td>
<td>
<pre>
<code class="haskell">f :: a -> a</code>
</pre>
</td>
</tr>
</table>
</section>
<section>
<table width="100%">
<tr>
<td>
<pre>
<code class="java">static <T> T f(T x)</code>
</pre>
</td>
<td>
<pre>
<code class="haskell">f :: a -> a</code>
</pre>
</td>
</tr>
<tr>
<td class="fragment">
<pre>
<code class="java">f(x);</code>
</pre>
</td>
<td class="fragment">
<pre>
<code class="haskell">f x</code>
</pre>
</td>
</tr>
<tr class="fragment">
<td>
<pre>
<code class="java">f(x, y);</code>
</pre>
</td>
<td>
<pre>
<code class="haskell">f x y</code>
</pre>
<pre class="fragment">
<code class="haskell">f x y = (f x) y</code>
</pre>
<aside class="notes">
Left-associative
Currying
</aside>
</td>
</td>
</tr>
</table>
</section>
<section>
<table width="100%">
<tr>
<td>
<pre>
<code class="java">static <T> T f(T x)
static <T> T g(T x)</code>
</pre>
</td>
<td>
<pre>
<code class="haskell">f :: a -> a
g :: a -> a</code>
</pre>
</td>
</tr>
<tr class="fragment">
<td>
<pre>
<code class="java">f(g(x));
g(f(x));</code>
</pre>
</td>
<td class="fragment">
<pre>
<code class="haskell">f (g x)
g (f x)</code>
</pre>
</td>
</tr>
</table>
</section>
</section>
<section>
<section>
<h1>
Композиция
</h1>
</section>
<section>
<pre><code class="haskell">f :: a -> a
g :: a -> a</code></pre>
<pre class="fragment"><code class="haskell">f (g x)</code></pre>
<pre class="fragment"><code class="haskell">(f . g) x == f (g x)</code></pre>
<pre class="fragment"><code class="haskell">h = f . g
h x == f (g x)</code></pre>
</section>
<section>
<pre><code class="haskell">f :: a -> a
g :: a -> a
h :: a -> a
h = f . g</code></pre>
<h3 class="fragment">моноид</h3>
<aside class="notes" data-markdown>
моноид -- у тебя есть две штуки одного типа и ты можешь получить еще одну
штуку такого же
типа.
Это очень простой способ рождения сложности из простоты
причем тип h выводится из определения. Нам его указывать не надо.
если у нас изначальные маленькие кусочки хорошо описаны, то порожденные большие кусочки будут автоматически
хорошо описанными.
</aside>
</section>
<section>
<h3>
Моноид
</h3>
<p class="fragment">
Бинарная асоциативная операция
</p>
<pre><code class="haskell fragment">(.) :: (a -> a) -> (a -> a) -> (a -> a)</code></pre>
<p class="fragment">
Нейтральный элемент
</p>
<pre><code class="haskell fragment">id :: a -> a
id x = x</code></pre>
</section>
</section>
</section>
<section>
<section>
<h2>Haskell</h2>
</section>
<section>
<h3>Чисто функционаьлный</h3>
<p class="fragment" data-markdown>Все что функция может сделать -- посмотреть на свои аргументы это вернуть
значение.</p>
<aside class="notes" data-markdown>Нельзя просто произвольно распечатать строку в консоль, нельзя просто
произвольно
отправить запрос на бд, нельзя просто произвольно изменить глобальную переменную.</aside>
</section>
<section>
<h3>Referential transparency</h3>
<h5>(Любую константу можно заменить на само значение)</h5>
<pre><code class="java fragment">int x = 8;
int y = x++;
System.out.println(y + " might be the same as " + y);</code></pre>
<pre><code class="java fragment">int x = 8;
System.out.println(x++ + " might be the same as " + x++);</code></pre>
<aside class="notes" data-markdown>Сильно упрощает рефакторинг и понимание кода.</aside>
</section>
<section>
<h3>Нет переменных, циклов и условных переходов</h3>
<p class="fragment" data-markdown>
Зато есть константы и нормальная рекурсия
(А переходов вообще нет)
</p>
</section>
<section>
<h3>Очень ленивый</h3>
<pre><code class="haskell fragment">xs = [4, 1, 3, 2]
xs' = sort xs
print xs</code></pre>
<p class="fragment" data-markdown>
`xs'` не нужен чтобы распечатать `xs`, поэтому сортироваться ничто не будет.
(Зачем делать то, что можно не делать)
</p>
</section>
<section>
<p>Если хотите быстро и просто потыкаться, тут есть интерктивная штука:</p>
<a href="https://www.haskell.org">haskell.org</a>
</section>
</section>
<section>
<h2>Синтаксис</h2>
</section>
<section>
<section>
<h2>Функции</h2>
</section>
<section>
<pre><code class="haskell">add2 :: Int -> Int
add2 x = x + 2</code></pre>
<p>Все функции и константы всегда обозначаются словами с маленькой буквы без пробелов.</p>
<p>(Константы это просто функции с нулем аргументов.)</p>
</section>
<section>
<h3>Pattern mathcing</h3>
<pre><code class="haskell">fixBuz :: Int -> String
divide8 3 = "Fiz"
divide8 5 = "Buz"
divide8 15 = "FizBuz"
divide8 _ = "Some other number"</code></pre>
<p data-markdown>
Так матчить можно произвольные структуры произвольного уровня вложенности.
`_` -- специальное название константы, которое говорит что вам все равно что в ней лежит.
</p>
<aside class="notes" data-markdown>
функции объявляются в несколькро строк. Первая -- обьявленик типа функции,
а последубщие -- реализация. В общем случае тип можно не указывать, но указывать тип у высказыванй на самом
верхнем уровне (не вложенные) считается хорошим тоном и улучшает выведение типов и ошибки компиляции.
У функции может быть несколько реализаций: какая из них вызовется зависит от значений передаваемых
аргументов. матчинг произхводится сверху вниз.
если в аргемантах написано слово с маленькой буквы, то значение аргумента биндится на эту константу.
</aside>
</section>
</section>
<section>
<section>
<h2>Структуры</h2>
</section>
<section>
<pre><code class="haskell">data Foo = Bar
foo :: Bar
foo = Bar</code></pre>
<p data-markdown>
`Foo` -- тип структуры. `Bar` -- конструктор структуры.
Тут у `Foo` всего одно значение `Bar`.
</p>
</section>
<section>
<h3>Произведение типов</h3>
<h5>(обычные поля структур)</h5>
<aside class="notes" data-markdown>
После констрктора можно укзать существующие типы, которые в нем храняться.
</aside>
<pre><code class="haskell">data PersonType = Person String Int</code></pre>
<pre><code class="haskell fragment">vasya :: PersonType
vasya = Person "Vasya" 8
-- тип можно не укзывать
petya = Person "Petya" 5</code></pre>
<pre><code class="haskell fragment">getName :: PersonType -> String
getName (Person name _) = name</code></pre>
<pre><code class="haskell fragment">greetPerson :: PersonType -> String
greetPerson p = "Hello, " ++ getName p</code></pre>
<pre><code class="haskell fragment">greetPerson petya
-- "Hello, Petya"</code></pre>
</section>
<section>
<h3>Еще немного функций</h3>
<pre><code class="haskell fragment">greetPerson :: PersonType -> String
greetPerson p = "Hello, " ++ getName p</code></pre>
<pre><code class="haskell fragment">greetPerson :: PersonType -> String
greetPerson p = "Hello, " ++ name
where
name = getName p</code></pre>
<pre><code class="haskell fragment">greetPerson :: PersonType -> String
greetPerson p = "Hello, " ++ name
where
getName' (Person name _) = name
name = getName' p</code></pre>
</section>
<section>
<pre><code class="haskell">data PersonType = Person String Int
getName :: PersonType -> String
getName (Person name _) = name</code></pre>
<pre><code class="haskell fragment">greetName :: String -> String
greetName name = "Hello, " ++ name</code></pre>
<pre><code class="haskell fragment">greetPerson :: PersonType -> String
greetPerson p = greetName (getName p)</code></pre>
<pre><code class="haskell fragment">greetPerson :: PersonType -> String
greetPerson = greetName . getName</code></pre>
<pre><code class="haskell fragment">greetPerson petya
-- "Hello, Petya"</code></pre>
<pre><code class="haskell fragment">(greetName . getName) petya
-- "Hello, Petya"</code></pre>
</section>
<section>
<h3>Суммы типов</h3>
<aside class="notes" data-markdown>
Функции нескольких аргументов -- странный синтаксис -- потом расскажу.
</aside>
<pre><code class="haskell fragment">data Bool = False | True</code></pre>
<pre><code class="haskell fragment">x :: Bool
x = True
y = False</code></pre>
<pre><code class="haskell fragment">ifThenElse :: (Bool, a, a) -> a</code></pre>
<pre><code class="haskell fragment">ifThenElse (True, a, _) = a
ifThenElse (False, _, b) = b</code></pre>
<pre><code class="haskell fragment">ifThenElse (True, "Hello", "World")
-- "Hello"</code></pre>
<pre><code class="haskell fragment">ifThenElse (False, "Hello", "World")
-- "World"</code></pre>
</section>
<section>
<pre><code class="haskell">data CircleType = Circle Double Double Double
data RectangleType = Rectangle Double Double Double Double
</code></pre>
<pre><code class="haskell fragment">data Shape =
CircleShape CircleType | RectangleShape RectangleType</code></pre>
<pre><code class="haskell fragment">surface :: Shape -> Double</code></pre>
<pre><code class="haskell fragment">surface (CircleShape (Circle _ _ r)) =
pi * r ^ 2</code></pre>
<pre><code class="haskell fragment">surface (RectangleShape (Rectangle x1 y1 x2 y2)) =
(abs (x2 - x1)) * (abs (y2 - y1))</code></pre>
<pre><code class="haskell fragment">shape = CircleShape (Circle 0 0 2)
surface shape
-- 12.566370614359172
</code></pre>
<pre><code class="haskell fragment">otherShape = RectangleShape (Rectangle 1 2 3 4)
surface otherShape
-- 4.0
</code></pre>
</section>
</section>
<section>
<section>
<h2>И еще немного функций</h2>
</section>
<section>
<h3>Лямбда-выражения</h3>
<pre><code class="haskell fragment">add8 :: Int -> Int</code></pre>
<pre><code class="haskell fragment">add8 x = x + 8</code></pre>
<pre><code class="haskell fragment">add8 = \x -> x + 8</code></pre>
<p data-markdown class="fragment">
λ -- `\`
(λ печатать тяжело)</p>
<pre><code class="haskell fragment">foo :: (Int -> Int) -> Int</code></pre>
<pre><code class="haskell fragment">foo add8</code></pre>
<pre><code class="haskell fragment">foo (\x -> x + 8)</code></pre>
</section>
<section>
<h3>Давайте придумаем синтаксис для функции нескольких аргументов!</h3>
</section>
<section>
<pre><code class="haskell">x, y :: Int
x = 42
y = 69
</code></pre>
<pre><code class="haskell fragment">xPlusY :: Int
xPlusY = add x y</code></pre>
<p class="fragment" data-markdown>Применение функции -- лево-ассоциативно</p>
<pre><code class="haskell fragment">xPlusY = (add x) y</code></pre>
<pre><code class="haskell fragment">xPlusY = f y
f = add x</code></pre>
<pre><code class="haskell fragment">f :: Int -> Int</code></pre>
<pre><code class="haskell fragment">add :: Int -> (Int -> Int)</code></pre>
</section>
<section>
<pre><code class="haskell">add :: Int -> (Int -> Int)</code></pre>
<p class="fragment" data-markdown>Тип `->` -- право-ассоциативный</p>
<pre><code class="haskell fragment">add :: Int -> Int -> Int</code></pre>
<pre><code class="haskell fragment">add a b = a + b</code></pre>
<pre><code class="haskell fragment">add = \a b -> a + b</code></pre>
</section>
<section>
<p>Любая функция берет строго один аргумент.</p>
<p>Функция нескольких аргументов все равно берет строго одтн аргумент и возвращает функцию, которая берет
следйющий.
</p>
<p>
<em>
(И из-за того, что применение функции лево-ассоциативно, вызов таких не трубует особого
синтаксиса.)
</em>
</p>
</section>
<section>
<h3>Currying</h3>
<pre><code class="haskell fragment">add :: Int -> Int -> Int
add a b = a + b</code></pre>
<pre><code class="haskell fragment">add8 :: Int -> Int</code></pre>
<pre><code class="haskell fragment">add :: Int -> (Int -> Int)</code></pre>
<pre><code class="haskell fragment">add8 = add 8</code></pre>
<pre><code class="haskell fragment">add8 3
-- 11</code></pre>
</section>
<section>
<h3>Funny fact</h3>
<p class="fragment" data-markdown>Оператор (например `+`) -- функция, название которой не содержит буквы и
цифры.</p>
<pre><code class="haskell fragment">x +&+ y = x + y</code></pre>
<pre><code class="haskell fragment">8 +&+ 9
-- 17</code></pre>
</section>
<section>
<h3>Funny fact 2</h3>
<p class="fragment" data-markdown>Оператор можно превратить в функцию, окружив его скобками.</p>
<pre><code class="haskell fragment">add :: Int -> Int -> Int
add x y = x + y</code></pre>
<pre><code class="haskell fragment">add = (+&+)</code></pre>
<pre><code class="haskell fragment">add = (+)</code></pre>
</section>
<section>
<h3>Funny fact 3</h3>
<p class="fragment" data-markdown>Функцию можно превратить в оператор, окружив ее обратными кавычками.</p>
<pre><code class="haskell fragment">add :: Int -> Int -> Int
add x y = x + y</code></pre>
<pre><code class="haskell fragment">add 8 9
-- 17</code></pre>
<pre><code class="haskell fragment">8 `add` 9
-- 17</code></pre>
</section>
</section>
</section>
<section>
<section>
<h2>Список</h2>
</section>
<section>
<h3>Односвязный список</h3>
<pre><code class="haskell fragment">data IntList = Cons Int IntList | Nil</code></pre>
<pre><code class="haskell fragment">nums :: IntList
nums = 1 `Cons` (2 `Cons` (3 `Cons` Nil))</code></pre>
<pre><code class="haskell fragment">sum :: IntList -> Int</code></pre>
<pre><code class="haskell fragment">sum (Cons x xs) = x + sum xs</code></pre>
<pre><code class="haskell fragment">sum Nil = 0
sum (Cons x xs) = x + sum xs</code></pre>
<pre><code class="haskell fragment">sum nums
-- 6</code></pre>
</section>
<section>
<pre><code class="haskell">take :: Int -> IntList -> IntList</code></pre>
<pre><code class="haskell fragment">take _ Nil = Nil
take 0 _ = Nil
take n (Cons x xs) = Cons x (take (n - 1) xs)</code></pre>
<pre><code class="haskell fragment">nums :: IntList
nums = 1 `Cons` (2 `Cons` (3 `Cons` Nil))</code></pre>
<pre><code class="haskell fragment">take 2 nums
-- Cons 1 (Cons 2 Nil)
take 1029 nums
-- Cons 1 (Cons 2 (Cons 3 Nil))
take 0 nums
-- Nil</code></pre>
</section>
<section>
<pre><code class="haskell">repeat :: Int -> IntList</code></pre>
<pre><code class="haskell fragment">repeat n = n : (repeat n)</code></pre>
<pre><code class="haskell fragment">repeat 8
-- Cons 8 (Cons 8 (Cons 8 (Cons 8 (Cons 8 (Cons 8 (Cons 8 (Cons 8 (Cons 8 (Cons 8 (...</code></pre>
<pre><code class="haskell fragment">(take 3 . repeat) 8
-- Cons 8 (Cons 8 (Cons 8 Nil))</code></pre>
<pre><code class="haskell fragment">(sum . take 3 . repeat) 8
-- 24</code></pre>
</section>
<section>
<table>
<tr>
<td>Наша самодеятельность</td>
<td>В стандартной библиотеке</td>
</tr>
<tr class="fragment">
<td>
<pre><code class="haskell">IntList</code></pre>
</td>
<td>
<pre><code class="haskell">[Int]</code></pre>
</td>
</tr>
<tr class="fragment">
<td>
<pre><code class="haskell">Nil</code></pre>
</td>
<td>
<pre><code class="haskell">[]</code></pre>
</td>
</tr>
<tr class="fragment">
<td>
<pre><code class="haskell">Cons</code></pre>
</td>
<td>
<pre><code class="haskell">:</code></pre>
</td>
</tr>
<tr class="fragment">
<td>
<pre><code class="haskell">Cons 3 (Cons 4 Nil)</code></pre>
</td>
<td>
<pre class="fragment"><code class="haskell">3 : 4 : []</code></pre>
<pre class="fragment"><code class="haskell">[3, 4]</code></pre>
</td>
</tr>
</table>
</section>
<section>
<p data-markdown>`repeat`, `sum` и `take` тоже есть в стандартной библиотеке.</p>
</section>
</section>
<section>
<section>
<h2>QuickSort</h2>
</section>
<section>
<pre><code class="haskell">quicksort :: [Int] -> [Int]</code></pre>
<pre><code class="haskell fragment">quicksort (x:xs) =
quicksort smaller ++ [x] ++ quicksort larger
where
smaller = filter (< x) xs
larger = filter (>= x) xs</code></pre>
</section>
<section>
<pre><code class="haskell">filter :: (Bool -> Int) -> [Int] -> [Int]</code></pre>
<pre><code class="haskell fragment">filter f (x:xs) =
if f x
then filter f xs
else x:(filter f xs)</code></pre>
<pre><code class="haskell fragment">filter _ [] = []
filter f (x:xs) =
if f x
then filter f xs
else x:(filter f xs)</code></pre>
</section>
<section>
<pre><code class="haskell">quicksort :: [Int] -> [Int]
quicksort (x:xs) =
quicksort smaller ++ [x] ++ quicksort larger
where
smaller = filter (< x) xs
larger = filter (>= x) xs
filter _ [] = []
filter f (x:xs) =
if f x
then filter f xs
else x:(filter f xs)</code></pre>
</section>
<section>
<pre><code class="haskell">quicksort :: [Int] -> [Int]
quicksort [] = []
quicksort (x:xs) =
quicksort smaller ++ [x] ++ quicksort larger
where
smaller = filter (< x) xs
larger = filter (>= x) xs
filter _ [] = []
filter f (x:xs) =
if f x
then filter f xs
else x:(filter f xs)</code></pre>
<pre><code class="haskell fragment">quicksort [2, 1, 3, 4]
-- [1, 2, 3, 4]</code></pre>
</section>
<section>
<p data-markdown>`filter` тоже есть в стандартной библиотеке.</p>
</section>
</section>
<section>
<section>
<h2>Где и как смотреть "стандартную библиотеку"</h2>
</section>
<section>
<ol>
<li>
<a href="https://hackage.haskell.org/package/base">Hackage</a>
<p data-markdown>
(Там вам нужен только пакет `base`. Ссылка ведет прямо на него.)
Еще если там нажать `s`, то будет поиск.
</p>
</li>
<li class="fragment">
<a href="https://hoogle.haskell.org">Hoogle</a>
<p data-markdown>
Это поиск по типам.
Например: `Int -> [Int] -> [Int]`
(Тут вам опять же нужен только пакет `base`. Нужно чтобы справа было "package:base".)
</p>
</li>
</ol>
</section>
</section>
</div>
</div>
<script src="./js/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
// Displaнес presentation control arrows
controls: true,
// Help the user learn the controls by providing hints, for example by
// bouncing the down arrow when they first encounter a vertical slide
controlsTutorial: true,
// Determines where controls appear, "edges" or "bottom-right"
controlsLayout: 'bottom-right',
// Visibility rule for backwards navigation arrows; "faded", "hidden"
// or "visible"
controlsBackArrows: 'faded',
// Display a presentation progress bar
progress: true,
// Display the page number of the current slide
slideNumber: false,
// Add the current slide number to the URL hash so that reloading the
// page/copying the URL will return you to the same slide
hash: true,
// Push each slide change to the browser history. Implies `hash: true`
history: false,
// Enable keyboard shortcuts for navigation
keyboard: true,
// Enable the slide overview mode
overview: true,
// Vertical centering of slides
center: true,
// Enables touch navigation on devices with touch input
touch: true,
// Loop the presentation
loop: false,
// Change the presentation direction to be RTL
rtl: false,
// See https://github.com/hakimel/reveal.js/#navigation-mode
navigationMode: 'linear',
// Randomizes the order of slides each time the presentation loads
shuffle: false,
// Turns fragments on and off globally
fragments: true,
// Flags whether to include the current fragment in the URL,
// so that reloading brings you to the same fragment position
fragmentInURL: true,
// Flags if the presentation is running in an embedded mode,
// i.e. contained within a limited portion of the screen
embedded: false,
// Flags if we should show a help overlay when the questionmark
// key is pressed
help: true,
// Flags if speaker notes should be visible to all viewers
showNotes: false,
// Global override for autoplaying embedded media (video/audio/iframe)
// - null: Media will only autoplay if data-autoplay is present
// - true: All media will autoplay, regardless of individual setting
// - false: No media will autoplay, regardless of individual setting
autoPlayMedia: null,
// Global override for preloading lazy-loaded iframes
// - null: Iframes with data-src AND data-preload will be loaded when within
// the viewDistance, iframes with only data-src will be loaded when visible
// - true: All iframes with data-src will be loaded when within the viewDistance
// - false: All iframes with data-src will be loaded only when visible
preloadIframes: null,
// Number of milliseconds between automatically proceeding to the
// next slide, disabled when set to 0, this value can be overwritten
// by using a data-autoslide attribute on your slides
autoSlide: 0,
// Stop auto-sliding after user input
autoSlideStoppable: true,
// Use this method for navigation when auto-sliding
autoSlideMethod: Reveal.navigateNext,
// Specify the average time in seconds that you think you will spend
// presenting each slide. This is used to show a pacing timer in the
// speaker view
defaultTiming: 120,
// Enable slide navigation via mouse wheel
mouseWheel: false,
// Hide cursor if inactive
hideInactiveCursor: true,
// Time before the cursor is hidden (in ms)
hideCursorTime: 5000,
// Hides the address bar on mobile devices
hideAddressBar: true,
// Opens links in an iframe preview overlay
// Add `data-preview-link` and `data-preview-link="false"` to customise each link
// individually
previewLinks: false,
// Transition style
transition: 'slide', // none/fade/slide/convex/concave/zoom
// Transition speed
transitionSpeed: 'default', // default/fast/slow
// Transition style for full page slide backgrounds
backgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom
// Number of slides away from the current that are visible
viewDistance: 3,
// Parallax background image
parallaxBackgroundImage: '', // e.g. "'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'"
// Parallax background size
parallaxBackgroundSize: '', // CSS syntax, e.g. "2100px 900px"
// Number of pixels to move the parallax background per slide
// - Calculated automatically unless specified
// - Set to 0 to disable movement along an axis
parallaxBackgroundHorizontal: null,
parallaxBackgroundVertical: null,
// The display mode that will be used to show slides
display: 'block',
pdfSeparateFragments: false,
defaultTiming: null,
markdown: {
smartypants: true
},
dependencies: [
{ src: './plugin/markdown/marked.js' },
{ src: './plugin/markdown/markdown.js' },
{ src: './plugin/zoom-js/zoom.js', async: true },
{ src: './plugin/notes/notes.js', async: true },
{ src: './plugin/highlight/highlight.js', async: true }
]
});
</script>
</body>
</html>