数据结构
醒来明月
这个作者很懒,什么都没留下…
展开
-
二叉搜索树的删除
template<class K, class E> void binarySearchTree<K,E>::erase(const K& theKey) {// Delete the pair, if any, whose key equals theKey. // search for node with key theKey binaryTree...转载 2018-04-02 11:53:55 · 307 阅读 · 0 评论 -
dijkstra算法C++实现(最短路径)
void shortestPaths(int sourceVertex,T* distanceFromSource, int* predecessor) { //predecessor[i]保存从源定点到达顶点i的路径中前面的那个顶点 // Find shortest paths from sourceVertex. // Return sho...转载 2018-04-16 03:39:08 · 3608 阅读 · 1 评论