mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
chore: std::endl
-> \n
This commit is contained in:
parent
a2e3b417bd
commit
025f846e39
@ -45,7 +45,7 @@ void findMinimumEdge(const int &infinity,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
std::cout << i << " - " << minIndex << "\t" << graph[i][minIndex]
|
std::cout << i << " - " << minIndex << "\t" << graph[i][minIndex]
|
||||||
<< std::endl;
|
<< "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} // namespace greedy_algorithms
|
} // namespace greedy_algorithms
|
||||||
|
Loading…
Reference in New Issue
Block a user