Do not copy/paste or type the text in your own text editor.cycle0.txt

Place your order now for a similar assignment and have exceptional work written by our team of experts, At affordable rates

For This or a Similar Paper Click To Order Now

Provided files:
Grading Criteria
Unix.zip – zipped folder with all data files. For convenience below are direct links to individual files. To download individual files, use right click and Save As. Do NOT copy/paste or type the text in your own text editor.cycle0.txt
data0.txt
data0_rev.txt
data1.txt – like data0.txt but the order of the prerequisite courses is modified on line 2.
slides.txt (graph image) – courses given in such a way that they produce the same graph as in the image. (The last digit in the course number is the same as the vertex corresponding to it in the drawn graph. You can also see this in the vertex-to-course name correspondence in the sample run for this file.)
run.html
data0_easy.txt – If you cannot handle the above file format, this is an easier file format that you can use, but there will be 15 points lost in this case. More details about this situation are given in Part 3.
Specifications:You can use structs, macros, typedef.
All the code must be in C (not C++, or any other language)
Code that does not compile receives 0 credit.
Global or static variables are NOT allowed. The exception is using macros to define constants for the size limits (e.g. instead of using 30 for the max course name size).
E.g. #define MAX_ARRAY_LENGTH 20
You can use static memory (on the frame stack) or dynamic memory. (Do not confuse static memory with static variables.)
The program must read from the user a filename. The filename (as given by the user) will include the extension, but NOT the path. E.g.: data0.txt
You can open and close the file however many times you want.
File format:Unix file. It will have the Unix EOL (end-of-line).
Size limits:The file name will be at most 30 characters.
A course name will be at most 30 characters
A line in the file will be at most 1000 characters.
The file ends with an empty new line. See empty line image
Each line (except for the empty line) has one or more course names.
Each course name is a single word (without any spaces). E.g. CSE1310 (with no space between CSE and 1310).
There is no empty space at the end of the line.
There is exactly one empty space between any two consecutive courses on the same line. (You do not need to worry about having tabs or more than one empty space between 2 courses.)
The first course name on each line is the course being described and the following courses are the prerequisites for it. E.g.CSE2315 CSE1310 MATH1426
ENGL1301
The first line describes course CSE2315 and it indicates that CSE2315 has 2 prerequisite courses, namely: CSE1310 and MATH1426.
The second line describes course ENG1301 and it indicates that ENG1301 has no prerequisites.
You can assume that there is exactly one line for every course, even for those that do not have prerequisites (see ENGL1301 above). Count the number of lines in the file to get the total number of courses.
The courses are not given in any specific order in the file.
You must create a directed graph corresponding to the data in the file.The graph will have as many vertices as different courses listed in the file.
You can represent the vertices and edges however you want.
You do NOT have to use a graph struct. If you can do all the work with just the 2D table (the adjacency matrix) that is fine. You HAVE TO implement the topological sorting covered in class (as this assignment is on Graphs), but you can organize, represent and store the data however you want.
For the edges, you can use either the adjacency matrix representation or the adjacency list. If you use the adjacency list, keep the nodes in the list sorted in increasing order.
For each course that has prerequisites, there is an edge, from each prerequisite to that course. The direction of the edge indicates the dependency. The actual edge will be between the vertices in the graph corresponding to these courses.
E.g. file data0.txt has:c100
c300 c200 c100
c200 c100
Meaning:c100—–> c200
|
|
|
|
|
|
V V
c300
(The above drawing is provided here to give a picture of how the data in the file should be interpreted and the graph that represents this data.
Your program should not print this drawing. See the sample run for expected program output.)
From this data you should create the correspondence:vertex 0 – c100
vertex 1 – c300
vertex 2 – c200
and you can represent the graph using adjacency matrix (the row and column indexes are provided for convenience): | 0 1 2
—————–
0| 0 1 1
1| 0 0 0
2| 0 1 0
e.g. E[0][1] is 1 because vertex 0 corresponds to c100 and vertex 1 corresponds to c300 and c300 has c100 as a prerequisite. Notice that E[1][0] is not 1.
If you use the adjacency list representation, print the adjacency list. The list must be sorted in increasing order (e.g. see the list for 0). It should show the corresponding node numbers. E.g. for the above example the adjacency list will be:0: 1, 2,
1:
2: 1,
You must use the correspondence given here: vertex 0 for the course on the first line, vertex 1 for the course on the second line, etc.Print the courses in topological sorted order. This should be done using the topological sorting covered in class, including the DFS covered in class.
There is no topological order if there is a cycle in the graph; in this case print an error message.
If in DFV-visit when looking at the (u,v) edge, the color of v is GRAY then there is a cycle in the graph (and therefore topological sorting is not possible). See the Lecture on topological sorting.
(6 points) create and submit 1 test file. It must cover a special case. Indicate what special case you are covering (e.g. no course has any prerequisite). At the top of the file indicate what makes it a special case. Save this file as special.txt. It should be in Unix EOL format.
Part 2: Suggestions for improvements (not for grade)
CSE Advisors point out to students the “longest path through the degree”. That is the longest chain of course prerequisites (e.g. CSE1310 —> CSE1320 –> CSE3318 –>…). It gives a lower bound on the number of semesters needed until graduation. Can you find this path? Can you calculate for each course the LONGEST chain ending with it? E.g. in the above example, there are 2 chains ending with c300 (size 2: just c100–>c300, size 3: c100–>c200–>c300) and you want to show longest path 3 for c300. Can you calculate this number for each course?
Allow the user to the enter a list of courses taken so far (from the user or from file) and print a list of the courses they can take (they have all the prerequisites for).
Ask the user to enter a desired number of courses per semester and suggest a schedule (by semester).
Part 3: Implementation suggestions
Reading from file:(15 points) For each line in the file, the code can extract the first course and the prerequisites for it.
If you cannot process each line in the file correctly, you can use a modified input file that shows on each line, the number of courses, but you will lose the 15 points dedicated to line processing. If your program works with the “easy files”, in order to make it easy for the TAs to know which file to provide, please name your C program courses_graph_easy.c. Here is the modification shown for a new example. Instead ofc100
c300 c200 c100
c200
the file would have:1 c100
3 c300 c200 c100
1 c200
that way the first data on each line is a number that tells how many courses (strings) are after it on that line. Everything is separated by exactly one space. All the other specifications are the same as for the original file (empty line at the end, no space at the end of any line, length of words, etc). Here is data0_easy.txt
Make a direct correspondence between vertex numbers and course names. E.g.the **first** course name on the first line corresponds to vertex 0,
the **first** course name on the second line corresponds to vertex 1,
etc…
To add an edge in the graph you will need to find the vertex number corresponding to a given course name. E.g. find that c300 corresponds to vertex 1 and c200 corresponds to vertex 2. Now you can set E[2][1] to be 1. (With the adjacency list, add node 1 in the adjacency list at index 2 and keep the lists sorted.)
To help with this, write a function that takes as arguments the list/array of [unique] course names and one course name and returns the index of that course in the list. You can use that index as the vertex number. (This is like the indexOf() method in Java.)
To see all the non-printable characters that may be in a file, find an editor that shows them. E.g. in Notepad++ : open the file, go to View -> Show symbol -> Show all characters. YOU SHOULD TRY THIS!
In general, not necessarily for this homework, if you make the text editor show the white spaces, you will know if what you see as 4 empty spaces comes from 4 spaces or from one tab or show other hidden characters. This can help when you tokenize. E.g. here I am using Notepad++ to see the EOL for files saved with Unix/Mac/Windows EOL (see the CR/LF/CRLF at the end of each line): EOL_Mac_Unix_Windows.png

For This or a Similar Paper Click To Order Now

SmiteWriter
Calculate your paper price
Pages (550 words)
Approximate price: -

Why Work with Us

Top Quality and Well-Researched Papers

We always make sure that writers follow all your instructions precisely. You can choose your academic level: high school, college/university or professional, and we will assign a writer who has a respective degree.

Professional and Experienced Academic Writers

We have a team of professional writers with experience in academic and business writing. Many are native speakers and able to perform any task for which you need help.

Free Unlimited Revisions

If you think we missed something, send your order for a free revision. You have 10 days to submit the order for review after you have received the final document. You can do this yourself after logging into your personal account or by contacting our support.

Prompt Delivery and 100% Money-Back-Guarantee

All papers are always delivered on time. In case we need more time to master your paper, we may contact you regarding the deadline extension. In case you cannot provide us with more time, a 100% refund is guaranteed.

Original & Confidential

We use several writing tools checks to ensure that all documents you receive are free from plagiarism. Our editors carefully review all quotations in the text. We also promise maximum confidentiality in all of our services.

24/7 Customer Support

Our support agents are available 24 hours a day 7 days a week and committed to providing you with the best customer experience. Get in touch whenever you need any assistance.

Try it now!

Calculate the price of your order

Total price:
$0.00

How it works?

Follow these simple steps to get your paper done

Place your order

Fill in the order form and provide all details of your assignment.

Proceed with the payment

Choose the payment system that suits you most.

Receive the final file

Once your paper is ready, we will email it to you.

Our Services

No need to work on your paper at night. Sleep tight, we will cover your back. We offer all kinds of writing services.

Essays

Essay Writing Service

No matter what kind of academic paper you need and how urgent you need it, you are welcome to choose your academic level and the type of your paper at an affordable price. We take care of all your paper needs and give a 24/7 customer care support system.

Admissions

Admission Essays & Business Writing Help

An admission essay is an essay or other written statement by a candidate, often a potential student enrolling in a college, university, or graduate school. You can be rest assurred that through our service we will write the best admission essay for you.

Reviews

Editing Support

Our academic writers and editors make the necessary changes to your paper so that it is polished. We also format your document by correctly quoting the sources and creating reference lists in the formats APA, Harvard, MLA, Chicago / Turabian.

Reviews

Revision Support

If you think your paper could be improved, you can request a review. In this case, your paper will be checked by the writer or assigned to an editor. You can use this option as many times as you see fit. This is free because we want you to be completely satisfied with the service offered.