久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

代寫CE4703、C++設(shè)計編程代做

時間:2023-11-03  來源:  作者: 我要糾錯


代寫CE4703、C++設(shè)計編程代做
CE4703 Computer Software 3
ED5071 Computer Engineering Fundamentals
Assignment #1
Dr Reiner Dojen 1
Due 11:00h on Thursday, 09.11.2023
1
reiner.dojen@ul.ie
CE4703/ED5071 Assignment #1
1 Overview
Your task is to develop a program that can create and anlyse arrays of integers
in various ways. While developing the program, you must follow the principle
of modular programming (I also strongly encourage to re-use code as much as
possible). Also, for any non-trivial function, you must follow the 7 Steps of
Systematic Program Construction. Furthermore, you must comment all your
code for Doxygen.
All code must be developed as a Microsoft Visual Studio (VS) project using
standard C.
You also need to construct a report (in plain text format - just add a text file
named after you student ID to your VS project) that contains the following:
• A list of modules that make up your program.
• For each module, list what functions it contains. Also, provide a function
prototype (i.e. a function declaration) for each function.
• Specification for each function.
• Pseudocode representation for each function. For simple functions, a single
iteration is sufficient - for any non-trivial function pseudo-code representation provide (at least) two iterations of refinement. As discussed in the
lecture, I recommend to also include your pseudo-code as “in-code” comments in your source files.
2 Modular Structure
Your program must implement the functions listed below in Section 2.1 Required
Functions. Before you start implementing these functions, you must design a
modular structure - that is, define the modules that will make up your program.
For each module, decide what functions it contains.
2.1 Required Functions
You must provide a function for each of the listed tasks below. Feel free to
implement additional functions.
Page 1 of 7
CE4703/ED5071 Assignment #1
Note: For this assignment, arrays distinguish between “used” and “unused” elements. This means, that the size (or capacity) of an array indicates the maximum
number of elements that can be stored in the array. However, not all elements
may be “used” - in the extreme case, nothing is stored in an array: That is, while
an array may have 20 elements, none of these are used to store a value. Thus,
you somehow need to find a way to store values in the array in such a way that
you can distinguish between “used” and “unused” array elements (various ways
are possible, e.g. you can use a marker value that is stored in “unused” locations
or you can use a secondary array to indicate which locations are used and which
are not used (other methods do exist)).
Any function that takes in an array needs to be aware of this distinction - for
example, the function to compute the average value should only consider “used”
elements and ingore “unused” elements.
• Return a random positive integer number. Use the standard library function
rand to generate these numbers - use the same range as rand(). Feel free
to seed the random number generator.
• Return a random integer number with given limits (stated limits should be
inclusive, that is if limits 10 and 20 are given number both 10 and 20 may
be returned as the random number).
• Fill a given array of integers with a given size with value 0 - that is fill the
array to its capacity (all elements are now “used”).
• Fill a given array of integers with a given size with a user-defined value n
- that is fill the array to its capacity.
• Fill a given array of integers with a given size with random values within a
given range - that is fill the array to its capacity.
• Clear an array of integers with a given size - that is, mark all array elements
as being “unused”.
• “Defragment” an array of integers with a given size: move all “used” elements to the beginning of the arra and all “free” elements to the end of the
array.
• Sort an array of integers with a given size in ascending order (you need to
find a method yourself - any method that works is acceptable, it does not
need to be particularly efficient).
• Randomize an array of integers with a given size - that is rearrange the
elements of an arry in a random fashion.
Page 2 of 7
CE4703/ED5071 Assignment #1
• Print only “used” elements of an array of integers with a given size in form
{n1, n2, n3,. . . , n}. An empty array (array with only “unused” elements) is
printed as {}.
• Print (all) elements of an array of integers with a given size in form
{n1, n2, n3,. . . , n}. This function prints both, used and unused elements.
• Return the minimum element of an array of integers with a given size.
• Return the maximum element of an array of integers with a given size.
• Compute and return the average value (as double) of and array of integers
with a given size.
• Obtain and return the median value of and array of integers with given size.
• Compute and return the variance (as double) of and array of integers with
a given size. Variance v of {n1, n2, n3, . . . , nN } is given as:
P
N
i=1
(ni − avg)
2
N
,
where avg is the average value and N are the number of elements in the
array).
• Compute and return the standard deviation (as double) of and array of
integers with a given size. Standard deviation is calculated as follows:
vuuut
P
N
i=1
(ni − avg)
2
N
,
where avg is the average value and N are the number of elements in the
array).
• Return the number of used elements in an array of integers of a given size
(this is not neccessarily the same as the size).
• Return the number of unique used elements in an array of integers of a
given size. For example, if your array holds elements {3, 1, 2, 3, 4, 3, 2,
2, 3, 4}, it holds 10 elements in total, but it holds only 4 unique elements
(elements 1,2,3,4).
• Print (to the screen) a frequency distribution of the unique elements of an
array of integers of a given size. That is, print to the screen a summary
how often each (unique) element occurs in the array. For example, if your
array holds elements {3, 1, 2, 3, 4, 3, 2, 2, 3, 4} then the following ouput
should be obtained:
Page 3 of 7
CE4703/ED5071 Assignment #1
N Count
3 4
1 1
2 3
4 2
Note: The output should be something like this. Minor differences in formatting (number of blanks etc.) will not impact on the marking. The order
in which the elements occur in the two column display is not important.
• A test main() function - see comments in Section 3.
3 Module Implementation
Implement your application one module at a time (all modules should be placed
within the same VS project). Each module consists of two files: a header file
(with a .h extension - make sure it contains an inlude guard) that contains all
declarations and a source file (with a .c extension) that contains the implementation for all functions of a given module. As these modules are quite small, there
is no need to organize them in folders/directories. Also, please make sure to store
the main() function in a separate C souce file.
Also, your program must use the following:
• Files need to #include your own header files as required.
• At least one simple Pre-Processor macro must be defined and used.
• At least one Pre-Processor macro that takes in two parameters must be
defined and used.
• Conditional Inclusion in at least one location.
• Define the following symbolic constants:
Symbolic Constants Name Value
MYSIZE1 10
MYSIZE2 50
MIN1 0
MAX1 10
MIN2 100
MAX2 120
Page 4 of 7
CE4703/ED5071 Assignment #1
3.1 The main() Function
The main() function performs the following (whenever an array is printed to the
screen, make sure to also print the array’s name):
• Create array data1 with MYSIZE1 elements, clear the array and print the
array.
• Fill data1 with random values in range MIN1 to MAX1 and print the array.
• Sort data1 and print it to the screen.
• Randomize data1 and print it to the screen.
• Fill data1 with values {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} and print it to screen.
Remove values 1, 4, 5, and 9 from array (mark their locations being “unused”) and print all of the array. Also, print the number of used elements
in data1.
• Defragment the array and print again all of the array.
• Obtain and print minimum, maximum, average and median value of data1.
• Obtain and print variance and standard deviation of data1.
• Create array data2 with MYSIZE2 elements, fill it with values {3, 1, 2, 3,
4, 3, 2, 2, 3, 4} and print it to the screen.
• Obtain and print the number of used elements in data2, the number of
unique used elements and print the frequency distribution of data2.
• Fill data2 with MYSIZE2 random values in range MIN2 to MAX2 (overwrite previous values).
• Obtain and print minimum, maximum, average and median value of data2.
• Obtain and print variance and standard deviation of data2.
• Obtain and print the number of used elements in data2, the number of
unique used elements and print the frequency distribution of data2.
• Sort data2 and print it.
Page 5 of 7
CE4703/ED5071 Assignment #1
4 Marking
This is an individual assignment - each student must develop his/her own solution.
Any duplicate solutions will receive 0 marks.
The following items will impact on your marks:
• Does your solution perform the required actions correctly?
• Quality of Modular Structure.
• Overall quality of your code (including choice of names for variables and
structure of your code).
• Do not use global variables - unless you provide a very good justification
why global variables make sense, you will loose marks!
• Quality of your comments (cf. slide “Commenting Guidelines” in Unit 1).
Lack of comments will result in very significant loss of marks!!! And yes,
you do need “in code” comments in addition to the Doxygen comments
• Quality of your code format - follow K&R Coding Style as discussed in
lecture (cf. slides “K & R Coding Style” in Unit 1).
• Presence of warnings will cause loss of marks! Please make sure to use
standard C, enable warninga and use separate compilation.
• If your code does not compile you will receive 0 marks!
• Thus, if you are not able to finish any part of the exercise successfully,
comment out the sections of code that cause the problem (don’t delete it -
I might find some merrit in it and you may gain some marks).
Marking Scheme
hline Modular Structure & report 30
Correcly implemented functions (1 1
2 marks each) 30
Complete & suitable Doxygen Comments in code, doxygen documentation generated & submitted
20
All Pre-Processor features implmented 10
Correct & complete main() function (2/bullet-point). 30
Penalties:
Poor Modular Structure: Up to -50%
Insufficient comments: Up to -30%
Poor code format: Up to -30%
Bad coding style (e.g. using goto or global variables) Up to -50%
Compile Time Warning: -10% each
Compile Time Error: -100%
Total: (Note: Marks will be scaled down to 20%.) 120
Page 6 of 7
CE4703/ED5071 Assignment #1
5 Deadline & Submission
Deadline for this assignment is 11:00h on Thursday, 09.11.2023.
Please submit your solution as a single zip file via the module’s Brightspace page.
All solutions must be submitted as MV Studio projects - please put your entire
solution into a zip archive (Remove the “.vs” folder in your solution and peform
Build→Clean before you zip your solution).
A complete solution contains:
• All source & header files (suitable formatted & commented) as part of a
VS project.
• Generated Doxygen documentation in HTML format (stored in a subfolder
in the project’s base folder).
• Report - named after your ID number - in text format, containing: List
of modules, list of functions per module, specification for each functions,
pseudo-code for each function.
6 Queries
Please post any queries regarding the assignment on the forum “Assignment #1
Q&A” (found in “Discussions” tab on the Brightspace page). This will ensure
that the entire class gets the benefit of the answer.
請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

標簽:

掃一掃在手機打開當前頁
  • 上一篇:CHC5028代做、C/C++程序設(shè)計代寫
  • 下一篇:代做COMP9024、代寫c/c++編程設(shè)計
  • 無相關(guān)信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區(qū)
    昆明西山國家級風景名勝區(qū)
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

    男人添女人下面高潮视频| 蜜桃福利午夜精品一区| 欧美日韩在线不卡视频| 潘金莲一级淫片aaaaa免费看| www.av91| 中文字幕超清在线免费观看| 日本在线一二三区| 国产免费一区二区三区视频| 日韩 欧美 视频| 老司机午夜免费福利视频| 久久人人爽av| 亚洲高清在线免费观看| 久久久免费视频网站| 免费观看国产精品视频| 黑人巨茎大战欧美白妇| 日日噜噜噜夜夜爽爽| 亚洲激情在线看| 奇米影音第四色| 久久久精品麻豆| 97超碰人人爱| av在线网站免费观看| 日本爱爱免费视频| 欧美日韩第二页| 国产伦精品一区二区三区四区视频_| 99热都是精品| 男人的天堂视频在线| 日本久久久网站| 天堂а√在线中文在线| 日本a级片在线观看| 青青草免费在线视频观看| 免费成人进口网站| 欧美久久久久久久久久久久久久| 日韩精品久久一区二区| 国产传媒久久久| 国产一级不卡视频| 青青青免费在线| 国产日产欧美视频| 成年人在线观看视频免费| 男人操女人免费| 天天碰免费视频| 一起操在线视频| 欧美日韩久久婷婷| 只有这里有精品| 中国丰满熟妇xxxx性| 欧美三级一级片| 午夜免费一区二区| 亚洲第一色av| 欧美亚洲黄色片| 欧美亚洲日本在线观看| 午夜一区二区视频| 隔壁人妻偷人bd中字| 无码无遮挡又大又爽又黄的视频| 久久国产激情视频| wwwwww欧美| 四虎永久在线精品无码视频| 丁香婷婷激情网| 国产av不卡一区二区| 大j8黑人w巨大888a片| 91福利国产成人精品播放| 永久av免费在线观看| 国产av人人夜夜澡人人爽麻豆| www.欧美日本| www.18av.com| 国产精品入口免费软件| 最近中文字幕免费mv| 欧美成人xxxxx| 亚洲一二三av| 欧美日韩一道本| 国产黑丝在线视频| www.av中文字幕| 在线看免费毛片| 黄色国产一级视频| 欧美成人手机在线视频| 国产91在线视频观看| 二级片在线观看| 久久综合久久色| 成人午夜免费在线视频| 色片在线免费观看| 亚洲美免无码中文字幕在线| 日韩在线一区视频| 成人三级视频在线播放| 国产精品免费看久久久无码| 最新中文字幕2018| 成年人午夜视频在线观看| 五月天婷婷在线观看视频| 国产精品va在线观看无码| 伊人色在线观看| 国产乱子夫妻xx黑人xyx真爽| dy888午夜| 99re精彩视频| www黄色在线| 97干在线视频| 4444在线观看| 老司机久久精品| 欧美性大战久久久久xxx| 黄色网在线视频| 91视频福利网| 亚洲精品永久视频| 国产高潮免费视频| 逼特逼视频在线| 成人一区二区免费视频| 2021狠狠干| 国产91av视频在线观看| 亚洲精品久久久久久宅男| 成年人在线看片| 国产精品秘入口18禁麻豆免会员| 黄网站色视频免费观看 | 国产精彩视频一区二区| 九九精品久久久| 国产免费视频传媒| 无码aⅴ精品一区二区三区浪潮 | 天天干天天爽天天射| 日本精品www| 国产精品自拍片| 可以看毛片的网址| 91视频 - 88av| 国产免费xxx| 樱空桃在线播放| 精品久久免费观看| 永久免费黄色片| 1314成人网| 激情成人在线观看| 亚洲精品在线视频播放| 天天做天天干天天操| 在线观看日本www| 男人午夜视频在线观看| 999这里有精品| 日本成人xxx| 熟妇熟女乱妇乱女网站| 国产探花在线观看视频| 超碰成人在线免费观看| 午夜在线视频免费观看| 亚洲欧美日韩网站| 亚洲五码在线观看视频| 大西瓜av在线| 国产老熟妇精品观看| 欧美黄网站在线观看| 韩国日本美国免费毛片| 亚洲美女爱爱视频| 黄瓜视频免费观看在线观看www| 中文字幕超清在线免费观看| av久久久久久| www.av中文字幕| 黑森林福利视频导航| 亚洲 欧美 日韩系列| 91插插插影院| 成人午夜视频免费观看| a级黄色小视频| 国产成人久久777777| 亚洲 国产 图片| 日本成人在线不卡| 又大又硬又爽免费视频| 日韩免费毛片视频| 日韩av手机版| 亚洲天堂一区二区在线观看| 超碰10000| 99热成人精品热久久66| 亚洲 欧美 日韩系列| 亚洲一二区在线观看| 国产一级不卡视频| 丁香六月激情网| 国产精品秘入口18禁麻豆免会员| 激情视频免费网站| 亚洲av首页在线| 欧美xxxxx在线视频| 一区二区三区欧美精品| 国产在线无码精品| 日本网站免费在线观看| 午夜国产一区二区三区| 热久久最新网址| 欧美伦理视频在线观看| 黄色一级视频播放| 国产无套内射久久久国产| 潘金莲激情呻吟欲求不满视频| 国产日产欧美一区二区| 久草青青在线观看| ijzzijzzij亚洲大全| 波多野结衣家庭教师在线| 国产真人无码作爱视频免费| 一区二区三区一级片| 爱福利视频一区二区| 天天久久综合网| 37pao成人国产永久免费视频| 免费黄频在线观看| 国产偷人视频免费| 91免费国产精品| 国产三级精品三级在线| 国产在线青青草| a级片一区二区| 久久久久xxxx| 可以免费观看av毛片| 国产手机视频在线观看| 成人精品视频一区二区| 国产欧美日韩小视频| 久久黄色片网站| 91av资源网| 男人天堂新网址| 自拍一级黄色片| 久久国产这里只有精品| 人妻熟妇乱又伦精品视频|