日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

代寫CE4703、C++設計編程代做

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


代寫CE4703、C++設計編程代做
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++程序設計代寫
  • 下一篇:代做COMP9024、代寫c/c++編程設計
  • 無相關信息
    昆明生活資訊

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

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

              久久亚洲风情| 国产精品日韩欧美综合| 亚洲精品影院| 国产精品看片你懂得| 久久久免费精品| 亚洲视频一区在线观看| 国产专区欧美专区| 欧美日韩国产色综合一二三四| 欧美一区二区精品| 99国产精品国产精品毛片| 国产原创一区二区| 欧美性jizz18性欧美| 欧美成人在线免费视频| 午夜在线电影亚洲一区| 夜夜狂射影院欧美极品| 亚洲国产综合在线| 狠狠综合久久av一区二区小说| 国产精品久久综合| 欧美日韩视频在线观看一区二区三区| 久久一区精品| 久久亚洲精品中文字幕冲田杏梨| 午夜精品久久久久久99热| 亚洲伦理久久| 亚洲国产综合在线| 在线观看欧美激情| 在线播放亚洲一区| 国产亚洲精品美女| 国产欧美日韩三区| 国产欧美一区二区三区另类精品 | 欧美精品激情在线| 久久国产精品黑丝| 久久福利毛片| 久久精品一区二区三区中文字幕| 欧美一区二区视频在线| 性久久久久久久| 欧美中在线观看| 久久久久久高潮国产精品视| 久久久999精品免费| 久久蜜桃精品| 欧美不卡一区| 欧美日韩成人综合| 国产精品久久久久婷婷| 国产精品久久久久久久久搜平片| 国产精品视频午夜| 国产一区二区三区四区五区美女| 韩国美女久久| 亚洲精品久久久蜜桃| 99re热这里只有精品免费视频| 中文久久精品| 欧美一区二区私人影院日本| 久久男人资源视频| 欧美精品自拍| 国产精品v欧美精品v日韩 | 亚洲丝袜av一区| 午夜精品福利电影| 久久综合九色| 欧美日韩一视频区二区| 国产精品永久| 亚洲精品1区| 一区二区三区四区国产| 久久激情五月激情| 欧美激情 亚洲a∨综合| 国产伦精品一区二区三区视频孕妇 | 欧美日韩午夜| 国产农村妇女精品| 亚洲人成在线影院| 亚欧美中日韩视频| 欧美精品三区| 国产午夜亚洲精品不卡| 亚洲精品乱码久久久久| 午夜精品久久久久久久久久久久久 | 在线观看欧美黄色| 亚洲综合成人在线| 免费亚洲视频| 国产精品久久久亚洲一区 | 一区二区三区日韩精品| 久久色中文字幕| 欧美日韩国产在线观看| 黄色成人在线观看| 亚洲一区二区高清| 欧美国产高清| 国产综合色产| 亚洲小说区图片区| 欧美日韩国产精品自在自线| 国产主播喷水一区二区| 亚洲淫性视频| 国产精品大全| 亚洲美女视频在线免费观看| 久久天堂精品| 狠狠色综合色综合网络| 欧美一区二区三区免费视频| 国产精品www| 一区二区三区www| 欧美久久综合| 亚洲精品中文字幕有码专区| 久久综合电影一区| 一区二区三区无毛| 久久九九久精品国产免费直播| 国产精品一区2区| 亚洲一区三区电影在线观看| 欧美视频日韩视频| 一本色道久久综合亚洲二区三区 | 老鸭窝毛片一区二区三区| 狠狠色狠狠色综合日日小说| 久久精品一本| 尤物网精品视频| 久久综合99re88久久爱| 1024亚洲| 欧美精品一区二区三区蜜桃| 日韩午夜视频在线观看| 欧美日韩亚洲一区二区三区在线| 一本色道精品久久一区二区三区 | 亚洲无线观看| 国产精品视频九色porn| 亚洲欧美一区二区在线观看| 国产欧美日韩另类一区| 久久久噜噜噜久久久| 好吊一区二区三区| 免费日韩av电影| 一区二区福利| 国产亚洲精品一区二555| 久久亚洲色图| 一区二区成人精品| 国产精品一二三| 久久久999精品视频| 亚洲欧洲日韩在线| 国产精品久久福利| 久久九九99| 亚洲精品国产精品乱码不99| 欧美三级在线播放| 久久蜜桃精品| 亚洲精品久久久一区二区三区| 欧美日韩精品国产| 久久精品免费| 中国成人黄色视屏| 曰韩精品一区二区| 国产精品久久久久久久久久久久久久| 欧美自拍偷拍午夜视频| 亚洲三级国产| 国产三区二区一区久久| 欧美激情成人在线视频| 欧美在线免费观看| 亚洲美女啪啪| 国产一区二区精品| 欧美日韩中文| 欧美高清视频www夜色资源网| 亚洲欧美日韩一区二区| 亚洲精品国产精品国自产在线| 国产精品一区二区久久精品| 欧美激情一区二区三级高清视频| 欧美怡红院视频| 亚洲永久精品国产| 亚洲美女在线一区| 伊人久久av导航| 国产精品视频免费观看www| 欧美激情国产日韩精品一区18| 欧美一区二区三区久久精品茉莉花 | 欧美精品免费观看二区| 久久精品亚洲一区二区三区浴池| 亚洲精选成人| 亚洲国产成人91精品 | 欧美一级午夜免费电影| 亚洲美女尤物影院| 亚洲国产一二三| 激情五月婷婷综合| 国产一区二区三区黄| 国产欧美日本一区二区三区| 欧美性生交xxxxx久久久| 久久精品国产免费观看| 欧美一级播放| 亚洲欧美激情四射在线日| 亚洲一区二区三区高清| 亚洲视频一区二区在线观看| 日韩视频免费在线| 一本久道久久综合狠狠爱| 日韩一区二区电影网| 日韩一区二区福利| 亚洲美女毛片| 亚洲午夜免费福利视频| 亚洲中字黄色| 香蕉尹人综合在线观看| 久久久91精品国产一区二区三区| 欧美在线视频一区二区| 久久久久国产一区二区| 蜜桃久久av一区| 久久久噜久噜久久综合| 免费美女久久99| 欧美三级不卡| 国产日韩一区二区三区在线| 国产日韩亚洲欧美精品| 国产欧美日韩综合精品二区| 国产一区二区三区高清播放| 亚洲国产精品999| 亚洲精品国偷自产在线99热| 一区二区免费在线播放| 欧美一区二区| 久久一区二区三区四区五区| 欧美日本在线看| 国产精品久久久一区二区| 精品动漫3d一区二区三区免费版|