- 博客(2)
- 收藏
- 关注
原创 MergeSort Java
试着写写Merge Sort 上代码: public static List Mergesort(List list, int start, int end){ List result = new ArrayList(); if(start == end){ result.add(list.get(start)); return result; } i
2015-04-30 06:38:15 206
原创 Leetcode Same Tree Java
Same Tree Given two binary trees, write a function to check if they are equal or not. Two binary trees are considered equal if they are structurally identical and the nodes have the same value.
2015-04-30 05:34:43 154
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人