Skip to content

Commit 163dea7

Browse files
committed
update
1 parent b3ce379 commit 163dea7

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

ListSearch.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Lab: List Search
22

3-
Prove the following theorem about the variant of linear `search` that
4-
you implemented in lab.
3+
Prove the following theorem about the `search` provided in the
4+
following file that you should `import`.
5+
6+
[Search.pf](./Search.pf)
7+
58

69
```
710
theorem search_correct: all y: Nat. all xs: List<Nat>.

Search.pf

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import Nat
2+
import List
3+
import Pair
4+
5+
function search(List<Nat>, Nat) -> Pair<List<Nat>, List<Nat> > {
6+
search([], y) = pair([], [])
7+
search(node(x, xs), y) =
8+
if x = y then
9+
pair([], node(x, xs))
10+
else
11+
define S = search(xs, y);
12+
pair(node(x, first(S)), second(S))
13+
}
14+
15+
assert search([5,2,3,4,1], 3) = pair([5,2], [3,4,1])
16+
assert search([5,2,3,4,1], 5) = pair([], [5,2,3,4,1])
17+
assert search([5,2,3,4,1], 7) = pair([5,2,3,4,1], [])

0 commit comments

Comments
 (0)