C++11 standards
This commit is contained in:
@@ -63,13 +63,10 @@ void czyscStringa( string &str, char* znakiDoCzyszczenia ) {
|
||||
|
||||
|
||||
void dijkstruj(mapa doPrzetworzenia){
|
||||
double punktStartowy = doPrzetworzenia[0][0];
|
||||
|
||||
for (auto i = doPrzetworzenia.begin(); i != doPrzetworzenia.end(); i++) {
|
||||
for (auto ii = i->second.begin(); ii != i->second.end(); ii++) {
|
||||
std::cout<< i->first << ii->first << ii->second << std::endl;
|
||||
}
|
||||
}
|
||||
for (auto const &i : doPrzetworzenia){
|
||||
for (auto const &ii : i.second){
|
||||
std::cout << i.first << ':' << ii.first << ':'<< ii.second << std::endl;
|
||||
}}
|
||||
}
|
||||
|
||||
void dumpOutput(string outputFile, string preparedString)
|
||||
|
||||
Reference in New Issue
Block a user