Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~1K People Reached
Favorite Tags
c x 5
c++ x 1
Member Avatar for largedimples

[B]Will some one please help with the topological sort problem. What am I doing wrong? Thanks in advance for your help!! [/B][code=c] #include <stdio.h> #include <limits.h> class Vertex { public char label; public Vertex(char lab) { label = lab; } } public class Graphs { private final int MAX_VERTS = …

Member Avatar for WaltP
0
231
Member Avatar for largedimples

What compiler can I use to build/run an flex scanner? I tried mircle and visual studio 2010 neither one would run the program. I have until mid night tomorrow to workout all the bugs and submit them. Thanks in advance

Member Avatar for gusano79
0
83
Member Avatar for largedimples

What is the formula to evaluate the execution time of a fortran program

Member Avatar for BestJewSinceJC
-1
125
Member Avatar for largedimples

I need help to make this run as a c program. I am better at writing c++ code than I am at writing c code. I had this working as a C++ program and I trying coverting it to C. This program must perform a topologic sort of a graph. …

0
81
Member Avatar for largedimples

Will someone please check this and tell me if I did this problem correctly. The question is presented bold; I also need help with push. I couldn't figure out how to complete the definition or routine for it. I am not very good at big o notation to determine if …

Member Avatar for Tom Gunn
0
774
Member Avatar for largedimples

I am having trouble removing the errors listed below please help [code=cplusplus] #include <iostream> #include <fstream> #include <cmath> using namespace std; class rational { public: rational(int num, int den); rational(int num); rational(); int getnum(); int getden(); void input(istream& in); void print(ostream& out); bool less(rational r); rational Add(rational r); private: int …

Member Avatar for jencas
0
163