Other
文章平均质量分 67
再见小小ronnie
这个作者很懒,什么都没留下…
展开
-
Eularian Path
For Eulerian graph, every edge is visited exactly once. Eulerian graph, the number of odd degree edge is either 0 or 2. Eulerian circuit, all vertex's degree are even. Algorithm for finding a Eul原创 2017-01-18 05:21:15 · 244 阅读 · 0 评论 -
Tail recursion and normal recursion
Tail recursive will return the result immediately when the recursion reach the base case. However, for normal recursion, when it reaches the base case it will return to the previous call again and a原创 2017-01-20 08:55:59 · 205 阅读 · 0 评论