- 博客(2)
- 收藏
- 关注
原创 线性表(链表、数组)与栈
调整数组顺序使奇数位于偶数前面 //方法一 public class Solution { public void reOrderArray(int [] array) { int[] a=new int[array.length]; int m=0; for(int i=0;i<array.length;i++){ //先遍历数组找
2017-03-30 12:45:39 184
原创 java二叉树的创建与遍历
public class BTreeNode { BTreeNode left,right; char element; public BTreeNode(char obj){ element=obj; } } public interface BTreeInterface { void createBTree(String str); void printBTree(BT
2017-03-16 00:46:45 202
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人