acm专项训练
文章平均质量分 54
frist_csdn
这个作者很懒,什么都没留下…
展开
-
ACM从入门到未来UVa122 Treees on the level
Trees on the level Trees are fundamental in many branches of computer science. Current state-of-the art parallel computers such as Thinking Machines’ CM-5 are based on fat trees. Quad- and octal-trees原创 2017-04-13 19:11:13 · 226 阅读 · 0 评论 -
DFS的两种非递归的实现方法
第一种方法转自别人的博客:1.桟初始化2.输出起始顶点;起始顶点改为“已访问”标志;将起始顶点进桟;3.重复下列操作直到桟为空:3.1取桟顶元素顶点;(注意不出桟)3.2桟顶元素顶点存在未访问过的邻接节点w:3.2.1输出顶点w3.2.2将顶点w改为“已访问”标志3.2.3将顶点w进桟3.3否则,当前顶点出桟第二种方法:1.桟初始化2.输出起原创 2017-05-19 21:21:11 · 1305 阅读 · 1 评论