Difference between revisions of "FP Laboratory 3"
Jump to navigation
Jump to search
(Marked this version for translation) |
|||
Line 1: | Line 1: | ||
== Usage of lists == | == Usage of lists == | ||
<translate> | <translate> | ||
+ | <!--T:1--> | ||
Find out the results of the following operations: | Find out the results of the following operations: | ||
</translate> | </translate> | ||
Line 13: | Line 14: | ||
<translate> | <translate> | ||
− | == Simple functions working with list == | + | == Simple functions working with list == <!--T:2--> |
Implement following functions: | Implement following functions: | ||
* Create a function that computes length of a list. | * Create a function that computes length of a list. | ||
Line 35: | Line 36: | ||
<translate> | <translate> | ||
+ | <!--T:3--> | ||
* Create a function that sums the list of integers. | * Create a function that sums the list of integers. | ||
</translate> | </translate> | ||
Line 56: | Line 58: | ||
<translate> | <translate> | ||
+ | <!--T:4--> | ||
* Create a function that returns the first element in the list. | * Create a function that returns the first element in the list. | ||
</translate> | </translate> | ||
Line 75: | Line 78: | ||
<translate> | <translate> | ||
+ | <!--T:5--> | ||
* Create a function that returns the last element in the list. | * Create a function that returns the last element in the list. | ||
</translate> | </translate> | ||
Line 100: | Line 104: | ||
<translate> | <translate> | ||
+ | <!--T:6--> | ||
* Create a function that checks if an element is a member of the list. | * Create a function that checks if an element is a member of the list. | ||
</translate> | </translate> | ||
Line 121: | Line 126: | ||
<translate> | <translate> | ||
+ | <!--T:7--> | ||
* Create a function that returns the list without the first element. | * Create a function that returns the list without the first element. | ||
</translate> | </translate> | ||
Line 140: | Line 146: | ||
<translate> | <translate> | ||
+ | <!--T:8--> | ||
* Create a function that returns the list without the last element. | * Create a function that returns the list without the last element. | ||
</translate> | </translate> | ||
Line 161: | Line 168: | ||
<translate> | <translate> | ||
+ | <!--T:9--> | ||
* Create a function that merge two lists into one list. | * Create a function that merge two lists into one list. | ||
</translate> | </translate> | ||
Line 182: | Line 190: | ||
<translate> | <translate> | ||
+ | <!--T:10--> | ||
* Create a function that finds the maximum in the list of integers. | * Create a function that finds the maximum in the list of integers. | ||
</translate> | </translate> | ||
Line 210: | Line 219: | ||
<translate> | <translate> | ||
+ | <!--T:11--> | ||
* Create a function that reverse a list. | * Create a function that reverse a list. | ||
</translate> | </translate> | ||
Line 236: | Line 246: | ||
<translate> | <translate> | ||
+ | <!--T:12--> | ||
* Create a function that product scalar multiplication if two vectors. | * Create a function that product scalar multiplication if two vectors. | ||
</translate> | </translate> |
Revision as of 08:20, 19 October 2021
Usage of lists
Find out the results of the following operations:
[3,2,1] > [2,1,0]
[3,2,1] > [2,10,100]
[3,4,2] > [3,4]
[3,4,2] > [2,4]
[3,4,2] == [3,4,2]
Simple functions working with list
Implement following functions:
- Create a function that computes length of a list.
length' :: [a] -> Int
*Main> length' "ABCD"
4
- Create a function that sums the list of integers.
sumIt :: [Int] -> Int
*Main> sumIt [1,2,3]
6
- Create a function that returns the first element in the list.
getHead :: [a] -> a
*Main> getHead [1,2,3]
1
- Create a function that returns the last element in the list.
getLast :: [a] -> a
*Main> getLast [1,2,3]
3
getLast :: [a] -> a
getLast [x] = x
getLast (x:xs) = getLast xs
getLast' :: [a] -> a
getLast' (x:xs) | length xs == 0 = x
| otherwise = getLast' xs
- Create a function that checks if an element is a member of the list.
isElement :: Eq a => a -> [a] -> Bool
*Main> isElement 2 [1,2,3]
True
isElement :: Eq a => a -> [a] -> Bool
isElement _ [] = False
isElement a (x:xs) | a == x = True
| otherwise = isElement a xs
- Create a function that returns the list without the first element.
getTail :: [a] -> [a]
*Main> getTail [1,2,3]
[2,3]
- Create a function that returns the list without the last element.
getInit :: [a] -> [a]
*Main> getInit [1,2,3]
[1,2]
- Create a function that merge two lists into one list.
combine :: [a] -> [a] -> [a]
*Main> combine [1,2,3] [4,5]
[1,2,3,4,5]
- Create a function that finds the maximum in the list of integers.
max' :: [Int] -> Int
*Main> max' [3,1,7,5]
7
max' :: [Int] -> Int
max' [x] = x
max' (x:y:z) | x > y = max' (x:z)
| otherwise = max' (y:z)
max'' :: [Int] -> Int
max'' (y:ys) = tmp y ys where
tmp a [] = a
tmp a (x:xs) | x > a = tmp x xs
|otherwise = tmp a xs
- Create a function that reverse a list.
reverse' :: [a] -> [a]
*Main> reverse' [3,1,7,5]
[5,7,1,3]
reverse' :: [a] -> [a]
reverse' [] = []
reverse' (x:xs) = (reverse' xs) ++ [x]
reverse'' :: [a] -> [a]
reverse'' n = tmp n []
where tmp [] ys = ys
tmp (x:xs) ys = tmp xs (x:ys)
- Create a function that product scalar multiplication if two vectors.
scalar :: [Int] -> [Int] -> Int
*Main> scalar [1,2,3] [4,5,6]
32