CS计算机代考程序代写 data structure Lambda Calculus chain Haskell algorithm Functional Programming SS16
Functional Programming SS16 Solution – Exam 17.08.2016 aaProf. Dr. J. Giesl D. Korzeniewski Exercise 1 (Programming in Haskell): (6 + 6 + 7 + 16 = 35 points) We de�ne a polymorphic data structure Warehouse to represent a warehouse that can contain goods. data Warehouse a = Corridor (Warehouse a) (Warehouse a) | Shelf [a] […]