Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~658 People Reached
Favorite Forums
Favorite Tags
Member Avatar for imhiya

br r31, <0, +5 I'm confused how to make the br statement into binary as it carrys the <0 information. Do i have many versions of the br statement each with it's own opcode depending on the flag? Or do I have one opcode for all br statements and a …

0
64
Member Avatar for imhiya

[CODE] #include <iostream> #include <cstdlib> #include <cstdio> #include <fstream> #include <string> #include <vector> #include <sstream> #include <list> #include <limits.h> using namespace std; class Node { public: string name; vector<string> edges; vector<int> dist; }; class Path { public: vector <int> distance; vector <string> fromwhere; vector <int> complete; vector <string> cities; vector …

Member Avatar for rubberman
0
135
Member Avatar for imhiya

[CODE]class Node { public: string name; list<string> edges; };[/CODE] [CODE]list<Node> nodes;[/CODE] Hello, Can you help. I used this class that you gave but i've struggling to add anything. I tried nodes.name.push_back(str); but no use, and also i tried nodes::name.push_back(str); i also tried to compare sections by trying nodes[i].name == temp; …

Member Avatar for mrnutty
0
146
Member Avatar for faizlo

Hi, I am doing a C++ self-study and I got stuck with this problem. I want to have a code that asks the suer to enter two numbers and then it lists the numbers between these two numbers. It has also to print a message if these two numbers are …

Member Avatar for winrycool1
0
160
Member Avatar for imhiya

I have two files; one with places then the distance between them. Example: Moffat Carlisle 65 Doncaster Hull 76 Northampton Birmingham 90 Leicester Lincoln 82 Sheffield Birmingham 122 I was wanting to use dijkstra's method, but i seem to have a problem because looking pseudo codes to understand it they …

Member Avatar for VernonDozier
0
153