首页
编程语言
数据库
网络开发
Algorithm算法
移动开发
系统相关
金融统计
人工智能
其他
首页
>
> 详细
CS24留学生讲解、辅导threshold、辅导C/C++、辅导C/C++程序设计 辅导R语言程序|讲解SPSS
Fall 2018 CS24 Project 2
Due: December 07, 2018
Objectives: This project is the last project you will be working on this quarter. The main
objective of this project is to gain experience developing larger programs in C++.
Project specification: In this project, you will be building upon the functionality you built in
Project 1, with a few modifications. You will be creating 2 executables with different
functionalities for this project.
1. In the first executable, you will be taking as input a word to be searched and also a
threshold value for the count and you must output the list of files in which the word
appears a minimum of (threshold) number of times. For example, given a word ‘cat’
and threshold 2, you must output the list of files in which the word ‘cat’ appears 2 or
more times.
2. In the second executable, you will be taking as input 2 words, and you must output
the union of the 2 lists of files in which the 2 words appear.
Each of the above 2 executables takes exactly one input during execution, so the
inputs need not be given in a while loop. It will suffice if the program exits after
printing the output for the one single input given.
Input specification: The program takes as a command line argument a directory which
contains set of files, containing multiple words. Words can appear multiple times in a single
file or in different files. The input files are assumed to be stored in a dedicated directory (for
e.g. /cs/class/cs24/project1/input) and loaded in memory upon program execution. Use the
driver program given, to get a list of (word count,file) from the list of input files. After the
words have been loaded into memory, each of the above 2 executables takes a single input
from the user, prints the corresponding output and exits.
Program functionality:
Below you can find the format specification:
First executable:
$./wordsearchcount
Examples for execution format:
$./wordsearchcount input
Enter word: cat
Enter threshold: 2
File: file1.txt; Count: 3File: file4.txt; Count: 3
File: file2.txt; Count: 2
---Program exits
If executed as specified above, the program should return the name of files that contain word
“cat” 2 or more times, and exit.
Second executable:
$./wordsearchunion
Examples for execution format:
$./wordsearchunion input
Enter word1:cat
Enter word2:dog
file1.txt
file4.txt
file6.txt
file8.txt
---Program exits
If executed as specified above, the program should return the union of the list of files that
contain words - cat or dog.
Implementation requirements:
You will be retaining the same functionality as Project 1, but with some key changes :
1. Instead of using an array to store the list of words, you will be creating a doubly
linked list of words in which the words are sorted in alphabetical order, in the doubly
linked list.
2. Instead of using a bag to store the list of files, you will be again creating a doubly
linked list of filenames with their respective counts and this doubly linked list needs
to be sorted by the number of occurrences of the word in the given file, in decreasing
order. For example, in the doubly linked list , if file A contains the word 3 times and
file B contains the word 1 time, the doubly linked list will first have file A, followed by
file B.
Key implementation detail:
In project 1, the details of the file name along with the respective count of the word was
displayed from within the bag.cpp file (i.e - the print method was inside the bag cpp file). In
this project, for each of the 2 executables, the reference to the linked list must be returned to
the calling function in wordsearchcount / wordsearchunion cpp file and the printing of the
output must happen from within this cpp file.A basic layout of the data structure you would need to implement is illustrated on the figure
below:
Pointers for code changes in the implementation:
1. Word.cpp must now contain a reference to a doubly linked list of files.
2. Bag.cpp must now be replaced by list.cpp which must take care of the functionalities
for the doubly linked list of files.
3. Itemtype.cpp may be reused as before.
4. For finding the union of the 2 linked list of files, use the below pseudo code as
reference:
? Create a new list and add the files corresponding to the first list (list of files of
word 1 ) into this list.
? Take each element of the second list(list of files of word 2) and check if it is
present in the newly created list, and if it is not there, add it to the list, else do
not add it if it is already present in the list.
? At the end, the new list will contain the union of the 2 lists.
? Print out the list of files in this new list.
5. You are advised to use the doubly linked list implementation discussed in class, and
modify it to suit the needs of the project.
As before, you may assume the maximum number of files to be 100 and the maximum
number of words to be 1000.
You will need 10 files: wordsearchcount.h, wordsearchcount.cpp, wordsearchunion.h,
wordsearchunion.cpp, itemtype.h, itemtype.cpp, list.h, list.cpp, word.h, word.cpp.Instructions for compilation: Your program should compile on a CSIL machine with the
following command without any errors or warnings.
$ g++ -o wordsearchcount wordsearchcount.cpp itemtype.cpp list.cpp word.cpp
Turn-in procedure:
Upload your files to gauchospace under the corresponding project submission folder
联系我们
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-21:00
微信:codinghelp
热点文章
更多
辅导 comm2000 creating socia...
2026-01-08
讲解 isen1000 – introductio...
2026-01-08
讲解 cme213 radix sort讲解 c...
2026-01-08
辅导 csc370 database讲解 迭代
2026-01-08
讲解 ca2401 a list of colleg...
2026-01-08
讲解 nfe2140 midi scale play...
2026-01-08
讲解 ca2401 the universal li...
2026-01-08
辅导 engg7302 advanced compu...
2026-01-08
辅导 comp331/557 – class te...
2026-01-08
讲解 soft2412 comp9412 exam辅...
2026-01-08
讲解 scenario # 1 honesty讲解...
2026-01-08
讲解 002499 accounting infor...
2026-01-08
讲解 comp9313 2021t3 project...
2026-01-08
讲解 stat1201 analysis of sc...
2026-01-08
辅导 stat5611: statistical m...
2026-01-08
辅导 mth2010-mth2015 - multi...
2026-01-08
辅导 eeet2387 switched mode ...
2026-01-08
讲解 an online payment servi...
2026-01-08
讲解 textfilter辅导 r语言
2026-01-08
讲解 rutgers ece 434 linux o...
2026-01-08
热点标签
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: 99515681 微信:codinghelp
© 2024
www.7daixie.com
站长地图
程序辅导网!