首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
代做program、代写C/C++语言程序
项目预算:
开发周期:
发布时间:
要求地区:
Lab 4
Pointers
&
Structures
Part I: Nov. 4, 2024
Part II: Nov. 4, 2024
Faculty of Computing, HIT Weihai
Dept. of Computer Science & Technology
4-1/2-0
Pointers as Function Arguments
• Problem: how to exchange two variables using a function (p.95)
• Language points
➢Suppose main (the caller) calls swap (the callee)
➢Argument(s) passed from caller to callee by value
➢NOT vice versa
4-1-1
Faculty of Computing, HIT Weihai, 2024FA
Pointers as Function Arguments
• Problem: how to exchange two variables using a function (p.95)
• Language points
➢Suppose main (the caller) calls swap (the callee)
➢Argument(s) passed from caller to callee by value
➢NOT vice versa
• This program fails because of the wrong idea:
Since the value of a goes to x, afterwards the value of x will
also go back to a automatically; same is true for b and y
a and x are the same variable (not only equal, but they are
just one variable); b and y too
4-1-2
Faculty of Computing, HIT Weihai, 2024FA
Assignment 0: See How It is Wrong
• Use GDB to step through the following program
4-1-3
Faculty of Computing, HIT Weihai, 2024FA
void swap(int x, int y)
{
int temp;
temp = x;
x = y;
y = temp;
}
#include
int main()
{
int x = 3, y = 4;
swap(x, y);
printf("%d %d", x, y);
}
Assignment 0: See How It is Wrong
• Use GDB to step through the following program
➢ Job 1:
✓ When in main, check out the address of x:
(gdb) p &x
✓ When in swap, check out the address of x
✓ Consider: are they the same variable?
➢ Job 2:
✓ Just before leaving swap, check out the value of x:
(gdb) p x
✓ Immediately after getting back to main, check out the value of x
➢ Carefully record the above results and give your observation in the
lab report.
4-1-4
Faculty of Computing, HIT Weihai, 2024FA
Assignment 1: Get the Task Done
• (p.96) By receiving the addresses of arguments from the caller,
the callee manages to reach the original arguments, i.e. a and b
• Step through this program
4-1-5
Faculty of Computing, HIT Weihai, 2024FA
int main()
{
int a = 3, b = 4;
swap(&a, &b);
printf("%d %d", a, b);
}
void swap(int *px, int *py)
{
int temp;
temp = *px;
*px = *py;
*py = temp;
}
Assignment 1: Get the Task Done
(Cont.)
• (p.96) By receiving the addresses of arguments from the caller,
the callee manages to reach the original arguments, i.e. a and b
• Step through this program
➢ When in main, check out the addresses of a and b
➢ When in swap, see if you could still visit a (or b) directly:
(gdb) p a
✓ The reason is because we are now beyond the scope of a and b (§4.4)
✓ Sounds weird, but you just have to remember this rule
➢ However, we are sure to be able to visit a through its address, which is
now held in pointer px:
✓ Try: (gdb) p px and (gdb) p *px
➢ Carefully record the above results and give your observation in the lab
report.
4-1-6
Faculty of Computing, HIT Weihai, 2024FA
Assignment 2: Further Thinking
• Run the following program and try to explain why
• To troubleshoot, step through it using proper GDB commands
• Report your work.
4-1-7
Faculty of Computing, HIT Weihai, 2024FA
int main()
{
int a = 3, b = 4;
swap(&a, &b);
printf("%d %d", a, b);
}
void swap(int *px, int *py)
{
int *temp;
temp = px;
px = py;
py = temp;
}
Arrays of Structures
• Consider the following array of structures:
athlete PRCplayers[] = {
{ "CHANG Yuan", 'F', 0x970624, "boxing", "100" },
{ "JI Bowen", 'M', 0x020222, "canoe", "100" },
{ "LIU Qingyi", 'F', 0x051019, "breaking", "001" },
{ "LIU Yang", 'M', 0x940910, "gymnastics", "110" },
{ "MA Long", 'M', 0x881020, "table tennis", "100" },
{ "PAN Zhanle", 'M', 0x040804, "swimming", "210" },
{ "SHENG Lihao", 'M', 0x041204, "shooting", "200" },
{ "WANG Zongyuan", 'M', 0x011024, "diving", "110" },
{ "WANG Chang", 'M', 0x010507, "badminton", "010" },
{ "ZHANG Yufei", 'F', 0x980419, "swimming", "015" },
};
4-2-1
Faculty of Computing, HIT Weihai, 2024FA
typedef struct {
char *name;
char gender;
unsigned birthday;
char *sport;
char *GSBmedals;
} athlete;
Arrays of Structures
– Comprehensive Problem Solving
• Assignment 3 (choose any ONE task):
➢ Calculate the average number of medals per capita
➢ Find out who has/have won the most gold medals
➢ Find out the youngest male athlete
➢ See if player SUN Yingsha is in this array, using binary search
➢ Rearrange the array into descending order by age, using any algorithm
➢ Show which athletes come from the same sport team, and which sport(s)
➢ Given the subscripts of any two players (0 for CHANG Yuan, …, 9 for
ZHANG Yufei), calculate how many days one is older than the other
➢ Change all surnames from capital letters to lower case except for the
initial letter; and show the full names of all players on the screen
• Report your work.
4-2-2
Faculty of Computing, HIT Weihai, 2024FA
Examples
• Insert the following element into the array:
{ "ZHENG Qinwen", 'F', 0x021008, "tennis", "100" }
➢ Step 1: find the proper position
➢ Step 2: move all elements behind it to make room for the insertion
➢ Step 3: put the new record into this vacated position
➢ Step 4: show the whole array (one more record than before)
4-2-3
Faculty of Computing, HIT Weihai, 2024FA
Examples – insert.c
• Language points
➢When applied to an array, sizeof() evaluates to the total
number of bytes in this array; when applied to a structure,
the result is the # of bytes in this type of structure
➢Structure variables CANNOT be compared directly
✓if (plyr == *pplyr) /* wrong! */
➢Bounds check: should loop condition be > or >=?
✓for (pplyr += n-1; n > 0; n--)
➢printf("%-15s\t%c\t%06x\t%-15s\t%s\n");
✓SHENG Lihao M 041204 badminton_______200
✓WANG Zongyuan M 011024 diving 110
4-2-4
Faculty of Computing, HIT Weihai, 2024FA
_______
__________
_____
___
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做 program、代写 c++设计程...
2024-12-23
comp2012j 代写、代做 java 设...
2024-12-23
代做 data 编程、代写 python/...
2024-12-23
代做en.553.413-613 applied s...
2024-12-23
代做steady-state analvsis代做...
2024-12-23
代写photo essay of a deciduo...
2024-12-23
代写gpa analyzer调试c/c++语言
2024-12-23
代做comp 330 (fall 2024): as...
2024-12-23
代写pstat 160a fall 2024 - a...
2024-12-23
代做pstat 160a: stochastic p...
2024-12-23
代做7ssgn110 environmental d...
2024-12-23
代做compsci 4039 programming...
2024-12-23
代做lab exercise 8: dictiona...
2024-12-23
热点标签
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
软件定制开发网!