首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
辅导CISC 360、辅导Java,CS,c++语言编程、Python程序设计辅导 辅导R语言程序|调试Matlab程序
项目预算:
开发周期:
发布时间:
要求地区:
CISC 360 Assignment 1
due Tuesday, 2021–01–26 at 11:59pm, via onQ
Jana Dunfield
January 17, 2021
Reminder: All work submitted must be your own. You may (and should) ask for help from the
instructor, TAs or on Piazza.
Most of the questions on this assignment are about writing code, but a few questions are about
stepping. Please write your answers within the comments indicated in the file a1.hs (search for
Q3.1 and Q3.2).
Start early: Even if some questions look easy to you, Haskell is a very different language and
you may need more time than you think.
Late policy: Assignments submitted up to 24 hours late (that is, by 11:59 pm the following
day) will be accepted with a 15% penalty.
0 IMPORTANT: Your file must compile
Your file must load (:load in GHCi) successfully, or we will automatically subtract 30% from your
mark.
If you are halfway through a problem and run out of time, comment out the code that is
causing :load to fail by surrounding it with {- . . . -}, and write a comment describing what you
were trying to do. We can often give partial marks for evidence of progress towards a solution, but
we need the file to load and compile.
0 Document your code
This is basically a “fill-in-the-blanks” assignment, so you will not need to document much, unless
you declare new functions. In that case, you need to write a comment that explains what the
function does.
0 Strive for simplicity
You should try to find a simple solution. You do not have to find the simplest solution to get
full marks, but you should not have an excessively complicated solution. Marks may be deducted if
your solution is too complicated. If you are worried about whether your solution is too complicated,
contact the instructor.
0 Be careful with library functions
Haskell has a rather large built-in library. This assignment is not about how to find library functions,
but about how to use some of the core features of Haskell. You will not receive many marks if you
just call a library function that solves the whole problem. The point is to solve the problem yourself.
a1, Jana Dunfield, CISC 360, W. 2021 1 2021/1/17
§1 Add your student ID
If you are not sure whether you are calling a library function that solves the whole problem,
contact the instructor. Note that if we suggest a library function, you may certainly use it.
(The only way I know to avoid this issue is to craft problems that are complicated and arbitrary,
such that no library function can possibly solve them. I don’t like solving complicated and arbitrary
problems, and you probably don’t either.)
1 Add your student ID
The file a1.hs will not compile until you add your student ID number by writing it after the =:
-- Your student ID:
student_id :: Integer
student_id =
You don’t need to write your name. When we download your submission, onQ includes your
name in the filename.
2 Writing and testing small Haskell functions
2.1 between
This function takes three integers m, n and p, and should return True if m ≤ n ≤ p, and return
False otherwise.
Fill in the definition of between by replacing the word undefined with appropriate Haskell
code, and, if necessary, deleting the = (for example, if you decide to define between using guards).
We have already written five test cases for between, called test between1, 2, etc. These are
combined into test between, which is True only if all five tests pass.
2.2 carry
The carry function takes two integers, and should return 1 if both integers are odd, and 0 otherwise
(if both are even, or if one of them is even and the other is odd). (The name comes from the fact
that its result is the “carry bit” produced by adding the least significant bits of the two integers.)
3 Stepping questions
3.1 First expression
These questions ask you to step two small expressions. For example, the first stepping question asks
you to do the three steps needed to get the result. Replace the parts. (If you want to check
the last line, you can find it by entering the expression into GHCi.)
(\x -> x - (4 + x)) 1
=> _______________________ _________________________
=> _______________________ _________________________
=> __ by arithmetic
a1, Jana Dunfield, CISC 360, W. 2021 2 2021/1/17
§3 Stepping questions
3.2 Second expression
The other expression is somewhat larger, and uses a function triple, which is defined in the
comment.
Hint: The first step does not apply (call) the function triple. Haskell sees the expression
(\a -> (\b -> b (b 3))) 0 triple
as the expression
(\a -> (\b -> b (b 3))) 0
applied to the argument triple.
The expression
(\a -> \b -> (b (b 3))) 0
is the function (\a -> (\b -> b (b 3))) applied to the argument 0. That is where the first step
happens.
Hint: The correct solution steps 6 times (as indicated by the structure of blanks).
4 tower
In this question, you need to write a function tower. Your function should be recursive—its definition
will call itself—and should not use lists.
The idea is that tower is specified by the following equation:
The only remaining problem is that you may want to think of the Π product as looping from k
to n, but Haskell does not have loops, so you have to use recursion instead. The example of diag
from the lecture notes may be helpful: diag n computes the sum of integers from 0 up to n, but
does not use a loop. Instead, it calls itself recursively on n−1. You can think of it as counting down
from n to 0.
The file a1.hs includes a few tests for tower.
5 Base conversion
The functions you’ll write for this question return Haskell strings, which are lists of characters. We
have not discussed lists in any detail; however, for this problem, you should only need to know the
following:
• To return a string containing a single character 0, write
[’0’]
You could also write "0".
• To concatenate (append) two strings, use the built-in function ++. For example:
[’1’, ’2’, 3’] ++ [’4’]
returns "1234", which is the same thing as [’1’, ’2’, ’3’, ’4’].
5.1 toBinary
Read the specification in the comment immediately above toBinary.
Fill in the definition of toBinary by replacing the word undefined with appropriate Haskell
code, and, if necessary, deleting the = (for example, if you decide to define toBinary using guards).
5.2 toNary
Read the specification in the comment immediately above toNary.
We have already written part of the definition, to check for an invalid base—toNary only needs
to handle bases between 2 and 10.
If you pass a valid base to toNary, you will get an error when Haskell reaches the “otherwise”
guard. Replace “undefined” with your code.
You should handle all bases between 2 and 10 with the same code. Don’t “hard-code” each
base, that is, don’t do something like
... = if base == 2 then ...
else if base == 3 then ...
else if base == 4 then ...
That would fall under the category of being “excessively complicated”, and would lose marks.
a1, Jana Dunfield, CISC 360, W. 2021 4 2021/1/17
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!