Skip to content

Instantly share code, notes, and snippets.

View friendleemachine's full-sized avatar

friendleemachine

View GitHub Profile
2
1
2
task9: YES
.:
./
../
links/
list1
man.dir/
@friendleemachine
friendleemachine / Maze.cpp
Created October 22, 2018 15:38
Maze solver
#include <iostream>
#include <fstream>
#include <string>
class Maze {
private:
int R, C, sR, sC, eR, eC;
std::string data;
public:
Maze(std::string filepath) {
#include "/Users/fr_machine/lab2/rapidxml-1.13/rapidxml.hpp"
#include <fstream>
#include <iostream>
#include <string.h>
using namespace std;
using namespace rapidxml;
double exchange(xml_node<>* root_node, char currency_in[3], char currency_out[3], double amount) {
#include <iostream>
#include <stack>
using namespace std;
template<typename T>
class Node {
public:
Node *l;
Node *r;
#include <iostream>
#include <fstream>
using namespace std;
class Matrix {
private:
int **arr;
int n , m;
public: