Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit ef8d6ba

Browse files
committed
more on note
1 parent 4c9bf25 commit ef8d6ba

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

QuickNote.hs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,6 @@ smArrX = [1, 4, 10, 100, 1000]
3636

3737
-- ADT (abstract data type) for binary tree
3838
data BiTree a = Null | Node a (BiTree a) (BiTree a) deriving Show
39+
40+
-- ADT (abstract data type) for LinkedList
41+
data LinkedList a = Null'| Node' a (LinkedList a) deriving Show

0 commit comments

Comments
 (0)