-
-
Notifications
You must be signed in to change notification settings - Fork 418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Graph demos in Cpp. #93
Open
dvb99
wants to merge
1
commit into
hediet:master
Choose a base branch
from
dvb99:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "shell", | ||
"label": "g++ build active file", | ||
"command": "/usr/bin/g++", | ||
"args": [ | ||
"-g", | ||
"${file}", | ||
"-o", | ||
"${fileDirname}/${fileBasenameNoExtension}" | ||
], | ||
"options": { | ||
"cwd": "/usr/bin" | ||
}, | ||
"problemMatcher": [ | ||
"$gcc" | ||
], | ||
"group": "build" | ||
} | ||
] | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "shell", | ||
"label": "g++ build active file", | ||
"command": "C:\\Program Files\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin\\g++.exe", | ||
"args": [ | ||
"-g", | ||
"${file}", | ||
"-o", | ||
"${workspaceRoot}\\${fileBasenameNoExtension}.exe" | ||
], | ||
"options": { | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
"problemMatcher": [ | ||
"$gcc" | ||
], | ||
"group": "build" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
#include <iostream> | ||
#include <algorithm> | ||
#include <vector> | ||
#include <string> | ||
#include <jsoncons/json.hpp> | ||
#include <cassert> | ||
|
||
using namespace jsoncons; // for convenience | ||
using namespace std; | ||
|
||
// visualize `myGraphJson`! | ||
string myGraphJson = "{\"kind\":{\"graph\":true}," | ||
"\"nodes\":[{\"id\":\"1\"},{\"id\":\"2\"}]," | ||
"\"edges\":[{\"from\":\"1\",\"to\":\"2\"}]}"; | ||
|
||
class Graph | ||
{ | ||
private: | ||
char *tempPtr = NULL; | ||
char *constPtr = NULL; | ||
ojson j; | ||
|
||
public: | ||
Graph() | ||
{ | ||
tempPtr = new char[myGraphJson.length() + 1]; | ||
strcpy(tempPtr, myGraphJson.c_str()); | ||
constPtr = tempPtr; | ||
j = ojson::parse(constPtr); | ||
} | ||
|
||
~Graph() | ||
{ | ||
delete[] constPtr; | ||
constPtr = NULL; | ||
tempPtr = NULL; | ||
} | ||
void addNode(string NodeValue) | ||
{ | ||
multimap<string, string> Node; | ||
Node.emplace("id", NodeValue); | ||
Node.emplace("label", NodeValue); | ||
Node.emplace("color", "orange"); | ||
j["nodes"].push_back(Node); | ||
} | ||
|
||
void addEdge(string from, string to) | ||
{ | ||
multimap<string, string> Edge; | ||
Edge.emplace("from", from); | ||
Edge.emplace("to", to); | ||
Edge.emplace("color", "blue"); | ||
j["edges"].push_back(Edge); | ||
} | ||
|
||
void visualize() | ||
{ | ||
myGraphJson = ""; | ||
j.dump(myGraphJson); | ||
} | ||
}; | ||
|
||
int main() | ||
{ | ||
Graph *g1 = new Graph(); // apply breakpoint here | ||
// put command once "-exec set print elements 0" in debug console | ||
g1->visualize(); | ||
g1->addNode("3"); | ||
g1->visualize(); | ||
g1->addNode("4"); | ||
g1->visualize(); | ||
g1->addEdge("1", "3"); | ||
g1->visualize(); | ||
g1->addEdge("1", "4"); | ||
g1->visualize(); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#include <iostream> | ||
#include <algorithm> | ||
#include <vector> | ||
#include <string> | ||
#include <jsoncons/json.hpp> | ||
#include <cassert> | ||
|
||
using namespace jsoncons; // for convenience | ||
using namespace std; | ||
|
||
void addNode(ojson &j, string NodeValue) | ||
{ | ||
multimap<string, string> Node; | ||
Node.emplace("id", NodeValue); | ||
Node.emplace("label", NodeValue); | ||
Node.emplace("color", "orange"); | ||
j["nodes"].push_back(Node); | ||
} | ||
void addEdge(ojson &j, string from, string to) | ||
{ | ||
multimap<string, string> Edge; | ||
Edge.emplace("from", from); | ||
Edge.emplace("to", to); | ||
Edge.emplace("color", "blue"); | ||
j["edges"].push_back(Edge); | ||
} | ||
|
||
int main() | ||
{ | ||
// visualize `myGraphJson`! | ||
string myGraphJson = "{\"kind\":{\"graph\":true}," | ||
"\"nodes\":[{\"id\":\"1\"},{\"id\":\"2\"}]," | ||
"\"edges\":[{\"from\":\"1\",\"to\":\"2\"}]}"; | ||
|
||
char *tempPtr = new char[myGraphJson.length() + 1]; | ||
strcpy(tempPtr, myGraphJson.c_str()); | ||
char *constPtr = tempPtr; | ||
ojson j = ojson::parse(constPtr); | ||
|
||
string temps1, temps2, temps3; // apply breakpoint here | ||
// put command once "-exec set print elements 0" in debug console | ||
addNode(j, "3"); | ||
j.dump(temps1); // visualize temps1 | ||
cout << myGraphJson; | ||
addNode(j, "4"); | ||
addEdge(j, "1", "3"); | ||
j.dump(temps2); // visualize temps2 | ||
cout << myGraphJson; | ||
addEdge(j, "1", "4"); | ||
j.dump(temps3); // visualize temps3 | ||
cout << myGraphJson; | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is very likely to break on someone elses machine!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have tried to keep the installation of mingw-w64 on windows as default as possible.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would just drop the miDebuggerPath all together, gdb should be ideally picked from the PATH, anything will be case dependant