Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit a155654

Browse files
author
cd155
committed
update readme
1 parent 72b0ae8 commit a155654

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

‎README.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Using Haskell to Cracking the Code Interview
2-
Haskell Practice for solving real code problems, including Sorting, Searching, Tree, Graph and more.
2+
Haskell Practice for solving real code problems, including Sorting, Searching, Tree, Graph, Recursion, Dynamic Programming and more.
33

44
## Sorting
55
- Bubble Sort
@@ -12,9 +12,9 @@ https://github.com/cd155/algorithm-design-with-haskell/blob/0b28d915860446f07bb6
1212
https://github.com/cd155/algorithm-design-with-haskell/blob/0b28d915860446f07bb6643388dc9894cc75fcd7/src/Sorting.hs#L74-L97
1313

1414
- Interview Questions - Sorting
15-
- [10.1](https://github.com/cd155/algorithm-design-with-haskell/blob/71661bb4fa30663da215351bfaf55cd768952af7/src/Sorting.hs#L122)
16-
- [10.2](https://github.com/cd155/algorithm-design-with-haskell/blob/71661bb4fa30663da215351bfaf55cd768952af7/src/Sorting.hs#L139)
17-
- [10.11](https://github.com/cd155/algorithm-design-with-haskell/blob/71661bb4fa30663da215351bfaf55cd768952af7/src/Sorting.hs#L163)
15+
- [10.1 - Sort two sorted arrays into one sorted array](https://github.com/cd155/algorithm-design-with-haskell/blob/71661bb4fa30663da215351bfaf55cd768952af7/src/Sorting.hs#L122)
16+
- [10.2 - Write a method to group all the anagrams (eg: "ate","eat","tea")](https://github.com/cd155/algorithm-design-with-haskell/blob/71661bb4fa30663da215351bfaf55cd768952af7/src/Sorting.hs#L139)
17+
- [10.11 - Sort the array into an alternating sequence of Peaks and Valleys](https://github.com/cd155/algorithm-design-with-haskell/blob/71661bb4fa30663da215351bfaf55cd768952af7/src/Sorting.hs#L163)
1818

1919
- Heap
2020
- what this heap
@@ -32,7 +32,12 @@ https://github.com/cd155/algorithm-design-with-haskell/blob/71661bb4fa30663da215
3232
- binary search
3333
- binary search with no size
3434
- bit-related structure
35-
35+
- Interview Questions - Binary Search
36+
- [10.3 - Sort a rotated array](https://github.com/cd155/algorithm-design-with-haskell/blob/72b0ae8680e18aba8021443534dbfe6d460a4419/src/BinarySearch.hs#L42)
37+
- [10.4 - Search in a sorted unknown size of array](https://github.com/cd155/algorithm-design-with-haskell/blob/72b0ae8680e18aba8021443534dbfe6d460a4419/src/BinarySearch.hs#L98)
38+
- [10.5 - Search in a sorted (but interspersed with empty strings) array](https://github.com/cd155/algorithm-design-with-haskell/blob/72b0ae8680e18aba8021443534dbfe6d460a4419/src/BinarySearch.hs#L142)
39+
- [10.7 - Generate a miss integer with large file but small memory](https://github.com/cd155/algorithm-design-with-haskell/blob/72b0ae8680e18aba8021443534dbfe6d460a4419/src/BinarySearch.hs#L203)
40+
- 10.8, 10.9
3641
## Tree
3742
- Academic Term Definition of Tree
3843
https://github.com/cd155/algorithm-design-with-haskell/blob/71661bb4fa30663da215351bfaf55cd768952af7/src/Tree.hs#L7-L11
@@ -52,6 +57,7 @@ https://github.com/cd155/algorithm-design-with-haskell/blob/71661bb4fa30663da215
5257
- Breadth-first search
5358
https://github.com/cd155/algorithm-design-with-haskell/blob/71661bb4fa30663da215351bfaf55cd768952af7/src/Tree.hs#L198-L203
5459
- Interview Questions - Tree
60+
- 4.2, 4.4, 4.5, 4.6, 4.8, 4.9, 4.12
5561

5662
## Graph
5763
- Definition - Graph
@@ -60,3 +66,7 @@ https://github.com/cd155/algorithm-design-with-haskell/blob/71661bb4fa30663da215
6066
## LinkedList
6167
- Definition
6268
- Interview Questions - LinkedList
69+
70+
## Recursion and Dynamic Programming
71+
- Definition
72+
- Interview Questions

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /