首页 > > 详细

辅导Program语言编程、data程序辅导、讲解C/C++编程 讲解SPSS|辅导Web开发

项目预算:   开发周期:  发布时间:   要求地区:
Due Sunday by 11:59pm Points 90 Submitting a file upload File Types tar
Available until Apr 16 at 11:59pm
Start Assignment
The Magician Spellbook Catalog
Problem Statement
The great magic university of Fakebills has been adding a lot of new spellbooks to their library lately.
The school administration has hired you to create a spellbook catalog program that will make
searching for spellbooks easier.
To simplify your task, the school has provided you with their spellbook information. These come in the
form of a text file that file contains a list of Fakebill's spellbooks and their included spells, all of the
information that your program will display.
Requirements
Command Line Argument:
When starting the program, the user will provide one command line argument. The command line
argument will be the name of the file that contains the information about spellbooks and included
spells. If the user does not provide the name of an existing file the program should print out an error
message and quit.
Sorting and Printing:
Once the program begins, the user should be prompted with a list of different ways to display the
spellbook and spell information. After the user has chosen an option, they should be asked if they
want the information printed to the screen or written to a file. If they choose to write to a file, they
should be prompted for a file name. If the file name already exists, the information should be
appended to the file. If the file name does not exist, a file should be created and the information
should be written to the file.
Available Options:
Sort spellbooks by number of pages: If the user picks this option the books must be sorted in
ascending order by number of pages. Once they are sorted, you should print/write to file the title
of the book and the number of pages it has.
Sort spells by effect: There are five types of spells: fire, bubble, memory_loss, death, poison. The
spells with bubble as the effect should be listed first, followed by memory_loss, fire, poison, and
death. Once they are sorted, you should print/write to file the spell name and its effect.

2021/4/7 Program 1
https://canvas.oregonstate.edu/courses/1810763/assignments/8376088 2/8
Sort by average success rate of spells: You must create a list of books sorted by the average
success rate of all the spells contained within the book. Once calculated, you should print/write to
file the title of each applicable book and the corresponding average success rate.
Quit: The program will exit.
Your program should continue sorting and printing/writing until the user chooses to quit. For the
sorting functionality, you can write your own sorting function, or consider using C++'s built in sort
function.
Required Structs:
The following structs are required in your program. They will help organize the information that will be
read in (or derived) from the files. You cannot modify, add, or take away any part of the struct.
The spellbook struct will be used to hold information from the spellbooks.txt file. This struct holds
information about a spellbook.
struct spellbook {
string title;
string author;
int num_pages;
int edition;
int num_spells;
float avg_success_rate;
struct spell* s;
};
The spell struct will also be used to read in information from the spellbooks.txt file. This struct holds
information about a spell. There are five options for effect: "fire", "poison", "bubble", "death", or
"memory_loss".
struct spell {
string name;
float success_rate;
string effect;
};
Required Functions:
You must implement the following functions in your program. You are not allowed to modify these
required function declarations in any way. Note: it is acceptable if you choose to add additional
functions (but you must still include the required functions). Note2: You must write the dynamic
memory allocation functionality yourself (i.e. no using vectors).
This function will dynamically allocate an array of spellbooks (of the requested size):
spellbook* create_spellbooks(int);

2021/4/7 Program 1
https://canvas.oregonstate.edu/courses/1810763/assignments/8376088 3/8
This function will fill a spellbook struct with information that is read in from spellbooks.txt. Hint:
“ifstream &” is a reference to a filestream object. You will need to create one and pass it into this
function to read from the spellbooks.txt file.
void get_spellbook_data(spellbook*, int, ifstream &);
This function will dynamically allocate an array of spells (of the requested size):
spell* create_spells(int);
This function will fill a spell struct with information that is read in from spellbooks.txt.
void get_spell_data(spell*, int, ifstream &);
You need to implement a function that will delete all the memory that was dynamically allocated. You
can choose the prototype. A possible example prototype includes the following:
void delete_spellbook_data(spellbook*, int);
Required Input File Format
Your program must accommodate the file formats as specified in this section. The spellbooks.txt file
has the following structure. The file information will be provided in sets (corresponding to each
spellbook). Each spellbook will be accompanied by a listing of the spells inside.
The spellbooks.txt file will have the following pattern, and an example can be found here
(https://canvas.oregonstate.edu/courses/1810763/files/85698756/download?download_frd=1) :

<author> <number of pages> <edition> <number of spells in book><br><title of spell> <success rate> <effect><br><title of spell> <success rate> <effect><br><title of spell> <success rate> <effect><br>...<br><title of second spellbook> <author> <number of pages> <edition> <number of spells in book><br><title of spell> <success rate> <effect><br><title of spell> <success rate> <effect><br><title of spell> <success rate> <effect><br><title of spell> <success rate> <effect><br>...<br><title of third spellbook> <author> <number of pages> <edition> <number of spells in book><br><title of spell> <success rate> <effect><br><title of spell> <success rate> <effect><br>Example Operation<br>The following snippet of text shows an example implementation of the spellbook program. Note that<br>this example does not illustrate all required behavior. You must read this entire document to ensure<br>that you meet all of the program requirements.<br><br>2021/4/7 Program 1<br>https://canvas.oregonstate.edu/courses/1810763/assignments/8376088 4/8<br>$ ./catalog_prog spellbooks.txt<br>Which option would you like to choose?<br>Sort spellbooks by number of pages (Press 1):<br>Group spells by their effect (Press 2):<br>Sort spellbooks by average success rate (Press 3):<br>Quit (Press 4):<br>1<br>How would you like the information displayed?<br>Print to screen (Press 1)<br>Print to file (Press 2)<br>1<br>Spells_for_Dummies 303<br>Wacky_Witch_Handbook 1344<br>Necronomicon 1890<br>Forbidden_Tome 1938<br>Enchiridion 2090<br>The_Uses_of_Excalibur 3322<br>Charming_Charms 4460<br>Dorian 50000<br>Which option would you like to choose?<br>Sort spellbooks by number of pages (Press 1):<br>Group spells by their effect (Press 2):<br>Sort spellbooks by average success rate (Press 3):<br>Quit (Press 4):<br>3<br>How would you like the information displayed?<br>Print to screen (Press 1)<br>Print to file (Press 2)<br>1<br><Note: This example output is only intended to illustrate the program operation. Your values will be diff<br>erent.><br>Wacky_Witch_Handbook 90.05<br>The_Uses_of_Excalibur 87.9<br>Forbidden_Tome 76.8<br>Necronomicon 72.34<br>Enchiridion 51.2<br>Dorian 48.64<br>Charming_Charms 37.8<br>Spells_for_Dummies 29.74<br>Which option would you like to choose?<br>Sort spellbooks by number of pages (Press 1):<br>Group spells by their effect (Press 2):<br>Sort spellbooks by average success rate (Press 3):<br>Quit (Press 4):<br>3<br>How would you like the information displayed?<br>Print to screen (Press 1)<br>Print to file (Press 2)<br>2<br>Please provide desired filename: success_rate_list.txt<br>Appended requested information to file.<br>Which option would you like to choose?<br>Sort spellbooks by number of pages (Press 1):<br><br>2021/4/7 Program 1<br>https://canvas.oregonstate.edu/courses/1810763/assignments/8376088 5/8<br>Group spells by their effect (Press 2):<br>Sort spellbooks by average success rate (Press 3):<br>Quit (Press 4):<br>2<br>How would you like the information displayed?<br>Print to screen (Press 1)<br>Print to file (Press 2)<br>1<br>bubble Bubble_Beam<br>bubble Exploratory_Maneuver<br>memory_loss Space_Out<br>memory_loss Preliminary_Black_out<br>memory_loss Wacky_Dreams<br>fire Blasto_Strike<br>fire Beginning_Blast<br>poison Cthulhu_Venom<br>death Deathrock<br>death Nightmare<br>death Deadly_Details<br>Which option would you like to choose?<br>Sort spellbooks by number of pages (Press 1):<br>Group spells by their effect (Press 2):<br>Sort spellbooks by average success rate (Press 3):<br>Quit (Press 4):<br>4<br>Programming Style/Comments<br>In your implementation, make sure that you include a program header. Also ensure that you use<br>proper indentation/spacing and include comments! Below is an example header to include. Make<br>sure you review the style guidelines<br>(https://canvas.oregonstate.edu/courses/1810763/files/85698962/download?download_frd=1) for this<br>class, and begin trying to follow them, i.e. don’t align everything on the left or put everything on one<br>line!<br>/******************************************************<br>** Program: catalog.cpp<br>** Author:<br>** Date:<br>** Description:<br>** Input:<br>** Output:<br>******************************************************/<br>When you compile your code, it is acceptable to use C++11 functionality in your program. In order to<br>support this, change your Makefile to include the proper flag.<br>For example, consider the following approach (note the inclusion of -std=c++11):<br>g++ -std=c++11 //other flags and parameters<br><br>2021/4/7 Program 1<br>https://canvas.oregonstate.edu/courses/1810763/assignments/8376088 6/8<br>Magician Spellbook Catalog<br>In order to submit your homework assignment, you must create a tarred archive that contains your .h,<br>.cpp, and Makefile files. This tar file will be submitted to Canvas. In order to create the tar file, use the<br>following command:<br>tar –cvf assign1.tar catalog.h catalog.cpp prog.cpp Makefile<br>Note that you are expected to modularize your code into a header file (.h), an implementation file<br>(.cpp), and a driver file (.cpp).<br>You do not need to submit the txt files. The TA’s will have their own for grading.<br>Grading<br>You are required to meet with a TA within two weeks of the assignment due date to demo and<br>receive a grade. You can schedule a demo with a TA online using the link provided on the TAs page.<br>You must use your OSU email to schedule (for FERPA reasons), or your appointment will be<br>cancelled.<br>Programming assignments that do not compile and run on the OSU ENGR servers will receive<br>a grade of zero, with no exceptions.<br><br>2021/4/7 Program 1<br>https://canvas.oregonstate.edu/courses/1810763/assignments/8376088 7/8<br>Criteria Ratings Pts<br>12 pts<br>10 pts<br>7 pts<br>6 pts<br>3 pts<br>3 pts<br>8 pts<br>4 pts<br>10 pts<br>6 pts<br>Program Header / Good indentation & Use of whitespace / Function Documentation<br>At a minimum, header should contain author's name (2pts) and a description of the<br>program. (2pts)<br>Is code easy for the TA to read? Conditional blocks of code should always be indented.<br>(5pts) Every function contains it's own initial block comment (or multiple lines of comments<br>prior to the function definition) that provides the reader with an explanation of the function's<br>purpose (5pts). -1 pt for each function that is missing a header (up to 5 point penalty).<br>All functions designed in a modular fashion / No global variables<br>-5 pts if there are any global variables used in the code. If functions are exceptionally long<br>(greater than about 20 lines of actual code) this is a potential indication of poor modularity.<br>-3 pts for each function that the TA concludes is poorly modularized.<br>Command Line Functionality<br>(3 pts) Program displays error and terminates gracefully if exactly one command line<br>parameter is not provided. (4pts) Program displays error and terminates gracefully if a nonexistent<br>file is specified.<br>Struct Usage<br>Code defines/uses the spellbook and spell structs exactly as specified. -3 pts for any<br>incorrect struct. It's okay if the code uses additional structs for other purposes.<br>Memory Cleanup<br>The Valgrind LEAK SUMMARY should report: "definitely lost: 0 bytes in 0 blocks". Each<br>"new" operation should have a corresponding delete operation.<br>Program Functionality<br>Program does not crash during testing (e.g. segmentation fault or similar abrupt halts)<br>Function prototypes<br>The following function prototypes are used (exactly as shown) and included in a .h file.<br>-2pts for any function that doesn't match.<br>spellbook * create_spellbooks(int); void get_spellbook_data(spellbook *, int, ifstream &);<br>spell * create_spells(int); void get_spell_data(spell *, int, ifstream &);<br>Correct TAR file<br>Program was submitted as a single TAR file that contains a working Makefile, an<br>application .cpp file, a header .h file, and an implementation .cpp file. Exact filenames do<br>not matter for the source code.<br>Dynamic arrays of structs<br>Dynamically allocated arrays of structs are used for the spellbooks.<br>Sort spellbooks by # pages<br>Program sorts and displays the spellbooks by number of pages.<br><br>2021/4/7 Program 1<br>https://canvas.oregonstate.edu/courses/1810763/assignments/8376088 8/8<br>Total Points: 90<br>Criteria Ratings Pts<br>6 pts<br>6 pts<br>6 pts<br>3 pts<br>Group spells by effect<br>Program displays spells in groups (bubble, memory_loss, fire, poison, death)<br>Display spellbooks (sorted by average success rate)<br>Program sorts spellbooks by the average success rate of the spells contained within. The<br>sorted list is displayed on screen.<br>Program writes requested output to file<br>The user is able to request that sorted output be redirected to a user-specified filename.<br>The correct information is appended to that particular file.<br>Program repeats<br>Program repeats until the user chooses to exit.<br><br><br></span> </div> </div> <style type="text/css"> .listkeyword { color: #990099; font-size: 14px; margin:0px 0px 0px 17px; word-wrap: break-word; text-align:left; } </style> <div class="width30bi divfr"> <div class="width99bi margintop20 divbdr divfl"> <div class="divtitle"> <div class="divfl divtitlefont" style="text-align: left; width:250px"> 软件开发、广告设计客服</div> <div class="divfr"> </div> </div> <div> <ul> <li class="divullititle heightline25px divtal">QQ:99515681 </li> <li class="divullititle heightline25px divtal">邮箱:99515681@qq.com </li> <li class="divullititle heightline25px divtal">工作时间:8:00-23:00 </li> <li class="divullititle heightline25px divtal">微信:codinghelp</li> </ul> </div> </div> <div class="width99bi margintop20 divbdr divfl"> <div class="divtitle"> <div class="divfl divtitlefont" style="text-align: left"> 热点项目</div> <div class="divfr"> <img src="/image/j01.jpg" width="14" height="14" alt="软件定制开发更多图片" /></div> <div class="divfr"> <a href="Lists-0-1.html" id="infotop2_amore" title="软件定制开发周排行更多">更多</a></div> </div> <div> <ul> <li class="divullititle heightline25px divtal"><a href="2024111312219067341.html" title="代做CENG0013 Design of a process for the production of methyl acetate 2024代写留学生Matlab程序" target="_blank"> 代做ceng0013 design of a pro... </a> <span class="colorlan"> 2024-11-13</span> </li> <li class="divullititle heightline25px divtal"><a href="2024111312219066871.html" title="代做MECH4880 REFRIGERATION AND AIR CONDITIONING ASSIGNMENT 1 (2024) – Part A and B Overview (Ver 1)帮做R" target="_blank"> 代做mech4880 refrigeration a... </a> <span class="colorlan"> 2024-11-13</span> </li> <li class="divullititle heightline25px divtal"><a href="2024111312219057811.html" title="代做MCD1350: Media Studies A: Australian Screen Culture Assessment 4: Textual Analysis代做Statistics统计" target="_blank"> 代做mcd1350: media studies a... </a> <span class="colorlan"> 2024-11-13</span> </li> <li class="divullititle heightline25px divtal"><a href="2024111312219057181.html" title="代写FINT B338F (Autumn 2024) Assignment代做留学生SQL语言程序" target="_blank"> 代写fint b338f (autumn 2024)... </a> <span class="colorlan"> 2024-11-13</span> </li> <li class="divullititle heightline25px divtal"><a href="2024111312219056871.html" title="代做ENGD3000 Design of Tunable white LED lighting with CRI>90 for indoor Solar based IOT devices代做回" target="_blank"> 代做engd3000 design of tunab... </a> <span class="colorlan"> 2024-11-13</span> </li> <li class="divullititle heightline25px divtal"><a href="2024111312219051401.html" title="代做N1611 Financial Econometrics – Coursework 2024-25代做Prolog" target="_blank"> 代做n1611 financial economet... </a> <span class="colorlan"> 2024-11-13</span> </li> <li class="divullititle heightline25px divtal"><a href="2024111312219045781.html" title="代做ECON 2331: Economic and Business Statistics 2 Assignment 4帮做R编程" target="_blank"> 代做econ 2331: economic and ... </a> <span class="colorlan"> 2024-11-13</span> </li> <li class="divullititle heightline25px divtal"><a href="2024111312219040461.html" title="代做CS770/870 Assignment 8代做C/C++程序" target="_blank"> 代做cs770/870 assignment 8代... </a> <span class="colorlan"> 2024-11-13</span> </li> <li class="divullititle heightline25px divtal"><a href="2024111312219034371.html" title="代写AMATH 481/581 Autumn Quarter 2024 Homework 5: Vorticity-Streamfunction Equations帮做Matlab编程" target="_blank"> 代写amath 481/581 autumn qua... </a> <span class="colorlan"> 2024-11-13</span> </li> <li class="divullititle heightline25px divtal"><a href="2024111312219025151.html" title="代做CCC8013 The Process of Science代写留学生Matlab程序" target="_blank"> 代做ccc8013 the process of s... </a> <span class="colorlan"> 2024-11-13</span> </li> <li class="divullititle heightline25px divtal"><a href="2024111312219019531.html" title="代写CSIT040 – Modern Computing Skills Project Autumn 2024帮做Python编程" target="_blank"> 代写csit040 – modern comput... </a> <span class="colorlan"> 2024-11-13</span> </li> <li class="divullititle heightline25px divtal"><a href="2024111312219018591.html" title="代写ECON 2070: Introduc2on to Economics of Gender at Work Fall 2024 Assignment 5帮做R程序" target="_blank"> 代写econ 2070: introduc2on t... </a> <span class="colorlan"> 2024-11-13</span> </li> <li class="divullititle heightline25px divtal"><a href="2024111312219005931.html" title="代写CCT260, Project 2 PERSONAL WEBSITE帮做Python语言程序" target="_blank"> 代写cct260, project 2 person... </a> <span class="colorlan"> 2024-11-13</span> </li> </ul> </div> </div> <div class="width99bi margintop20 divbdr divfl"> <div class="divtitle"> <div class="divfl divtitlefont" style="text-align: left"> 热点标签</div> </div> <div> <ul class="listkeyword"> <a href="Lists.aspx?wd=MKTG2509" title="MKTG2509"> mktg2509 </a> <a href="Lists.aspx?wd=CSCI 2600" title="CSCI 2600"> csci 2600 </a> <a href="Lists.aspx?wd=38170" title="38170"> 38170 </a> <a href="Lists.aspx?wd=LNG302" title="LNG302"> lng302 </a> <a href="Lists.aspx?wd=CSSE3010" title="CSSE3010"> csse3010 </a> <a href="Lists.aspx?wd=PHAS3226" title="PHAS3226"> phas3226 </a> <a href="Lists.aspx?wd=77938" title="77938"> 77938 </a> <a href="Lists.aspx?wd=ARCH1162" title="ARCH1162"> arch1162 </a> <a href="Lists.aspx?wd=ENGN4536/ENGN6536" title="ENGN4536/ENGN6536"> engn4536/engn6536 </a> <a href="Lists.aspx?wd=ACX5903" title="ACX5903"> acx5903 </a> <a href="Lists.aspx?wd=COMP151101" title="COMP151101"> comp151101 </a> <a href="Lists.aspx?wd=PHL245" title="PHL245"> phl245 </a> <a href="Lists.aspx?wd=CSE12" title="CSE12"> cse12 </a> <a href="Lists.aspx?wd=COMP9312" title="COMP9312"> comp9312 </a> <a href="Lists.aspx?wd=STAT3016/6016" title="STAT3016/6016"> stat3016/6016 </a> <a href="Lists.aspx?wd=PHAS0038" title="PHAS0038"> phas0038 </a> <a href="Lists.aspx?wd=COMP2140" title="COMP2140"> comp2140 </a> <a href="Lists.aspx?wd=6QQMB312" title="6QQMB312"> 6qqmb312 </a> <a href="Lists.aspx?wd=XJCO3011" title="XJCO3011"> xjco3011 </a> <a href="Lists.aspx?wd=REST0005" title="REST0005"> rest0005 </a> <a href="Lists.aspx?wd=EMATM0051" title="EMATM0051"> ematm0051 </a> <a href="Lists.aspx?wd=5QQMN219" title="5QQMN219"> 5qqmn219 </a> <a href="Lists.aspx?wd=LUBS5062M" title="LUBS5062M"> lubs5062m </a> <a href="Lists.aspx?wd=EEE8155" title="EEE8155"> eee8155 </a> <a href="Lists.aspx?wd=CEGE0100" title="CEGE0100"> cege0100 </a> <a href="Lists.aspx?wd=EAP033" title="EAP033"> eap033 </a> <a href="Lists.aspx?wd=ARTD1109" title="ARTD1109"> artd1109 </a> <a href="Lists.aspx?wd=MAT246" title="MAT246"> mat246 </a> <a href="Lists.aspx?wd=ETC3430" title="ETC3430"> etc3430 </a> <a href="Lists.aspx?wd=ECMM462" title="ECMM462"> ecmm462 </a> <a href="Lists.aspx?wd=MIS102" title="MIS102"> mis102 </a> <a href="Lists.aspx?wd=INFT6800" title="INFT6800"> inft6800 </a> <a href="Lists.aspx?wd=DDES9903" title="DDES9903"> ddes9903 </a> <a href="Lists.aspx?wd=COMP6521" title="COMP6521"> comp6521 </a> <a href="Lists.aspx?wd=COMP9517" title="COMP9517"> comp9517 </a> <a href="Lists.aspx?wd=COMP3331/9331" title="COMP3331/9331"> comp3331/9331 </a> <a href="Lists.aspx?wd=COMP4337" title="COMP4337"> comp4337 </a> <a href="Lists.aspx?wd=COMP6008" title="COMP6008"> comp6008 </a> <a href="Lists.aspx?wd=COMP9414" title="COMP9414"> comp9414 </a> <a href="Lists.aspx?wd=BU.231.790.81" title="BU.231.790.81"> bu.231.790.81 </a> <a href="Lists.aspx?wd=MAN00150M" title="MAN00150M"> man00150m </a> <a href="Lists.aspx?wd=CSB352H" title="CSB352H"> csb352h </a> <a href="Lists.aspx?wd=MATH1041" title="MATH1041"> math1041 </a> <a href="Lists.aspx?wd=EENGM4100" title="EENGM4100"> eengm4100 </a> <a href="Lists.aspx?wd=ISYS1002" title="ISYS1002"> isys1002 </a> <a href="Lists.aspx?wd=08" title="08"> 08 </a> <a href="Lists.aspx?wd=6057CEM" title="6057CEM"> 6057cem </a> <a href="Lists.aspx?wd=MKTG3504" title="MKTG3504"> mktg3504 </a> <a href="Lists.aspx?wd=MTHM036" title="MTHM036"> mthm036 </a> <a href="Lists.aspx?wd=MTRX1701" title="MTRX1701"> mtrx1701 </a> <a href="Lists.aspx?wd=MTH3241" title="MTH3241"> mth3241 </a> <a href="Lists.aspx?wd=EEEE3086" title="EEEE3086"> eeee3086 </a> <a href="Lists.aspx?wd=CMP-7038B" title="CMP-7038B"> cmp-7038b </a> <a href="Lists.aspx?wd=CMP-7000A" title="CMP-7000A"> cmp-7000a </a> <a href="Lists.aspx?wd=INTS4010" title="INTS4010"> ints4010 </a> <a href="Lists.aspx?wd=ECON2151" title="ECON2151"> econ2151 </a> <a href="Lists.aspx?wd=INFS5710" title="INFS5710"> infs5710 </a> <a href="Lists.aspx?wd=FINS5516" title="FINS5516"> fins5516 </a> <a href="Lists.aspx?wd=FIN3309" title="FIN3309"> fin3309 </a> <a href="Lists.aspx?wd=FINS5510" title="FINS5510"> fins5510 </a> <a href="Lists.aspx?wd=GSOE9340" title="GSOE9340"> gsoe9340 </a> <a href="Lists.aspx?wd=MATH2007" title="MATH2007"> math2007 </a> <a href="Lists.aspx?wd=MATH2036" title="MATH2036"> math2036 </a> <a href="Lists.aspx?wd=SOEE5010" title="SOEE5010"> soee5010 </a> <a href="Lists.aspx?wd=MARK3088" title="MARK3088"> mark3088 </a> <a href="Lists.aspx?wd=INFS3605" title="INFS3605"> infs3605 </a> <a href="Lists.aspx?wd=ELEC9714" title="ELEC9714"> elec9714 </a> <a href="Lists.aspx?wd=COMP2271" title="COMP2271"> comp2271 </a> <a href="Lists.aspx?wd=MA214" title="MA214"> ma214 </a> <a href="Lists.aspx?wd=COMP2211" title="COMP2211"> comp2211 </a> <a href="Lists.aspx?wd=INFS3604" title="INFS3604"> infs3604 </a> <a href="Lists.aspx?wd=600426" title="600426"> 600426 </a> <a href="Lists.aspx?wd=SIT254" title="SIT254"> sit254 </a> <a href="Lists.aspx?wd=ACCT3091" title="ACCT3091"> acct3091 </a> <a href="Lists.aspx?wd=BBT405" title="BBT405"> bbt405 </a> <a href="Lists.aspx?wd=MSIN0116" title="MSIN0116"> msin0116 </a> <a href="Lists.aspx?wd=COM107/COM113" title="COM107/COM113"> com107/com113 </a> <a href="Lists.aspx?wd=MARK5826" title="MARK5826"> mark5826 </a> <a href="Lists.aspx?wd=SIT120" title="SIT120"> sit120 </a> <a href="Lists.aspx?wd=Comp9021" title="Comp9021"> comp9021 </a> <a href="Lists.aspx?wd=ECO2101" title="ECO2101"> eco2101 </a> <a href="Lists.aspx?wd=EEEN40700" title="EEEN40700"> eeen40700 </a> <a href="Lists.aspx?wd=CS253" title="CS253"> cs253 </a> <a href="Lists.aspx?wd=ECE3114" title="ECE3114"> ece3114 </a> <a href="Lists.aspx?wd=ECMM447" title="ECMM447"> ecmm447 </a> <a href="Lists.aspx?wd=CHNS3000" title="CHNS3000"> chns3000 </a> <a href="Lists.aspx?wd=MATH377" title="MATH377"> math377 </a> <a href="Lists.aspx?wd=ITD102" title="ITD102"> itd102 </a> <a href="Lists.aspx?wd=COMP9444" title="COMP9444"> comp9444 </a> <a href="Lists.aspx?wd=COMP(2041|9044)" title="COMP(2041|9044)"> comp(2041|9044) </a> <a href="Lists.aspx?wd=ECON0060" title="ECON0060"> econ0060 </a> <a href="Lists.aspx?wd=ECON7230" title="ECON7230"> econ7230 </a> <a href="Lists.aspx?wd=MGT001371" title="MGT001371"> mgt001371 </a> <a href="Lists.aspx?wd=ECS-323" title="ECS-323"> ecs-323 </a> <a href="Lists.aspx?wd=CS6250" title="CS6250"> cs6250 </a> <a href="Lists.aspx?wd=MGDI60012" title="MGDI60012"> mgdi60012 </a> <a href="Lists.aspx?wd=MDIA2012" title="MDIA2012"> mdia2012 </a> <a href="Lists.aspx?wd=COMM221001" title="COMM221001"> comm221001 </a> <a href="Lists.aspx?wd=COMM5000" title="COMM5000"> comm5000 </a> <a href="Lists.aspx?wd=MA1008" title="MA1008"> ma1008 </a> <a href="Lists.aspx?wd=ENGL642" title="ENGL642"> engl642 </a> <a href="Lists.aspx?wd=ECON241" title="ECON241"> econ241 </a> <a href="Lists.aspx?wd=COM333" title="COM333"> com333 </a> <a href="Lists.aspx?wd=MATH367" title="MATH367"> math367 </a> <a href="Lists.aspx?wd=MIS201" title="MIS201"> mis201 </a> <a href="Lists.aspx?wd=NBS-7041X" title="NBS-7041X"> nbs-7041x </a> <a href="Lists.aspx?wd=MEEK16104" title="MEEK16104"> meek16104 </a> <a href="Lists.aspx?wd=ECON2003" title="ECON2003"> econ2003 </a> <a href="Lists.aspx?wd=COMM1190" title="COMM1190"> comm1190 </a> <a href="Lists.aspx?wd=MBAS902" title="MBAS902"> mbas902 </a> <a href="Lists.aspx?wd=COMP-1027" title="COMP-1027"> comp-1027 </a> <a href="Lists.aspx?wd=DPST1091" title="DPST1091"> dpst1091 </a> <a href="Lists.aspx?wd=comp7315" title="comp7315"> comp7315 </a> <a href="Lists.aspx?wd=EPPD1033" title="EPPD1033"> eppd1033 </a> <a href="Lists.aspx?wd=M06" title="M06"> m06 </a> <a href="Lists.aspx?wd=EE3025" title="EE3025"> ee3025 </a> <a href="Lists.aspx?wd=MSCI231" title="MSCI231"> msci231 </a> <a href="Lists.aspx?wd=BB113/BBS1063" title="BB113/BBS1063"> bb113/bbs1063 </a> <a href="Lists.aspx?wd=FC709" title="FC709"> fc709 </a> <a href="Lists.aspx?wd=COMP3425" title="COMP3425"> comp3425 </a> <a href="Lists.aspx?wd=COMP9417" title="COMP9417"> comp9417 </a> <a href="Lists.aspx?wd=ECON42915" title="ECON42915"> econ42915 </a> <a href="Lists.aspx?wd=CB9101" title="CB9101"> cb9101 </a> <a href="Lists.aspx?wd=MATH1102E" title="MATH1102E"> math1102e </a> <a href="Lists.aspx?wd=CHME0017" title="CHME0017"> chme0017 </a> <a href="Lists.aspx?wd=FC307" title="FC307"> fc307 </a> <a href="Lists.aspx?wd=MKT60104" title="MKT60104"> mkt60104 </a> <a href="Lists.aspx?wd=5522USST" title="5522USST"> 5522usst </a> <a href="Lists.aspx?wd=LITR1-UC6201.200" title="LITR1-UC6201.200"> litr1-uc6201.200 </a> <a href="Lists.aspx?wd=EE1102" title="EE1102"> ee1102 </a> <a href="Lists.aspx?wd=COSC2803" title="COSC2803"> cosc2803 </a> <a href="Lists.aspx?wd=MATH39512" title="MATH39512"> math39512 </a> <a href="Lists.aspx?wd=OMP9727" title="OMP9727"> omp9727 </a> <a href="Lists.aspx?wd=INT2067/INT5051" title="INT2067/INT5051"> int2067/int5051 </a> <a href="Lists.aspx?wd=BSB151" title="BSB151"> bsb151 </a> <a href="Lists.aspx?wd=MGT253" title="MGT253"> mgt253 </a> <a href="Lists.aspx?wd=FC021" title="FC021"> fc021 </a> <a href="Lists.aspx?wd=BABS2202" title="BABS2202"> babs2202 </a> <a href="Lists.aspx?wd=MIS2002S" title="MIS2002S"> mis2002s </a> <a href="Lists.aspx?wd=PhyA21" title="PhyA21"> phya21 </a> <a href="Lists.aspx?wd=18-213" title="18-213"> 18-213 </a> <a href="Lists.aspx?wd=CEGE0012" title="CEGE0012"> cege0012 </a> <a href="Lists.aspx?wd=MDIA1002" title="MDIA1002"> mdia1002 </a> <a href="Lists.aspx?wd=MATH38032" title="MATH38032"> math38032 </a> <a href="Lists.aspx?wd=MECH5125" title="MECH5125"> mech5125 </a> <a href="Lists.aspx?wd=07" title="07"> 07 </a> <a href="Lists.aspx?wd=CISC102" title="CISC102"> cisc102 </a> <a href="Lists.aspx?wd=MGX3110" title="MGX3110"> mgx3110 </a> <a href="Lists.aspx?wd=CS240" title="CS240"> cs240 </a> <a href="Lists.aspx?wd=11175" title="11175"> 11175 </a> <a href="Lists.aspx?wd=FIN3020S" title="FIN3020S"> fin3020s </a> <a href="Lists.aspx?wd=Eco3420" title="Eco3420"> eco3420 </a> <a href="Lists.aspx?wd=ICTTEN622" title="ICTTEN622"> ictten622 </a> <a href="Lists.aspx?wd=COMP9727" title="COMP9727"> comp9727 </a> <a href="Lists.aspx?wd=CPT111" title="CPT111"> cpt111 </a> <a href="Lists.aspx?wd=DE114102D" title="DE114102D"> de114102d </a> <a href="Lists.aspx?wd=MGM320H5S" title="MGM320H5S"> mgm320h5s </a> <a href="Lists.aspx?wd=BAFI1019" title="BAFI1019"> bafi1019 </a> <a href="Lists.aspx?wd=MATH21112" title="MATH21112"> math21112 </a> <a href="Lists.aspx?wd=EFIM20036" title="EFIM20036"> efim20036 </a> <a href="Lists.aspx?wd=MN-3503" title="MN-3503"> mn-3503 </a> <a href="Lists.aspx?wd=FINS5568" title="FINS5568"> fins5568 </a> <a href="Lists.aspx?wd=110.807" title="110.807"> 110.807 </a> <a href="Lists.aspx?wd=BCPM000028" title="BCPM000028"> bcpm000028 </a> <a href="Lists.aspx?wd=INFO6030" title="INFO6030"> info6030 </a> <a href="Lists.aspx?wd=BMA0092" title="BMA0092"> bma0092 </a> <a href="Lists.aspx?wd=BCPM0054" title="BCPM0054"> bcpm0054 </a> <a href="Lists.aspx?wd=MATH20212" title="MATH20212"> math20212 </a> <a href="Lists.aspx?wd=CE335" title="CE335"> ce335 </a> <a href="Lists.aspx?wd=CS365" title="CS365"> cs365 </a> <a href="Lists.aspx?wd=CENV6141" title="CENV6141"> cenv6141 </a> <a href="Lists.aspx?wd=FTEC5580" title="FTEC5580"> ftec5580 </a> <a href="Lists.aspx?wd=MATH2010" title="MATH2010"> math2010 </a> <a href="Lists.aspx?wd=EC3450" title="EC3450"> ec3450 </a> <a href="Lists.aspx?wd=COMM1170" title="COMM1170"> comm1170 </a> <a href="Lists.aspx?wd=ECMT1010" title="ECMT1010"> ecmt1010 </a> <a href="Lists.aspx?wd=CSCI-UA.0480-003" title="CSCI-UA.0480-003"> csci-ua.0480-003 </a> <a href="Lists.aspx?wd=ECON12-200" title="ECON12-200"> econ12-200 </a> <a href="Lists.aspx?wd=IB3960" title="IB3960"> ib3960 </a> <a href="Lists.aspx?wd=ECTB60H3F" title="ECTB60H3F"> ectb60h3f </a> <a href="Lists.aspx?wd=CS247—Assignment" title="CS247—Assignment"> cs247—assignment </a> <a href="Lists.aspx?wd=TK3163" title="TK3163"> tk3163 </a> <a href="Lists.aspx?wd=ICS3U" title="ICS3U"> ics3u </a> <a href="Lists.aspx?wd=IB3J80" title="IB3J80"> ib3j80 </a> <a href="Lists.aspx?wd=COMP20008" title="COMP20008"> comp20008 </a> <a href="Lists.aspx?wd=COMP9334" title="COMP9334"> comp9334 </a> <a href="Lists.aspx?wd=EPPD1063" title="EPPD1063"> eppd1063 </a> <a href="Lists.aspx?wd=ACCT2343" title="ACCT2343"> acct2343 </a> <a href="Lists.aspx?wd=CCT109" title="CCT109"> cct109 </a> <a href="Lists.aspx?wd=ISYS1055/3412" title="ISYS1055/3412"> isys1055/3412 </a> <a href="Lists.aspx?wd=MATH350-Real" title="MATH350-Real"> math350-real </a> <a href="Lists.aspx?wd=MATH2014" title="MATH2014"> math2014 </a> <a href="Lists.aspx?wd=EEC180" title="EEC180"> eec180 </a> <a href="Lists.aspx?wd=STAT141B" title="STAT141B"> stat141b </a> <a href="Lists.aspx?wd=ECON2101" title="ECON2101"> econ2101 </a> <a href="Lists.aspx?wd=MSINM014/MSING014/MSING014B" title="MSINM014/MSING014/MSING014B"> msinm014/msing014/msing014b </a> <a href="Lists.aspx?wd=FIT2004" title="FIT2004"> fit2004 </a> <a href="Lists.aspx?wd=COMP643" title="COMP643"> comp643 </a> <a href="Lists.aspx?wd=BU1002" title="BU1002"> bu1002 </a> <a href="Lists.aspx?wd=CM2030" title="CM2030"> cm2030 </a> </ul> </div> </div> <br /> </div> <div class="divfloatclear"> </div> <div class="bottomdiv"> <div class="width1000px divmargin0auto paddingtop20"> <div class="height30px divtal"> <a href="#" title="软件定制开发网、软件制作联系我们">联系我们</a> - QQ: 9951568 </div> <div class="height30px divtal"> © 2021 <a href="#" target="_blank" title="软件定制开发网、软件制作技术分享">www.rj363.com</a> <span style="display:none"> </span> </div> <div class="divtal"> <span class="colorlan">软件定制开发网!</span> </div> <div class="paddingtop20"> </div> </div> </div> </div> </form> </body> </html>