数据结婚
stephenJS
这个作者很懒,什么都没留下…
展开
-
手写java数据结构之桶排序、归并排序、快速排序、冒泡排序、选择排序和插入排序
#直接上代码 桶排序 public class tongorder { public static int[] bucketSort(int[] nums,int maxnum) { int[] sorted=new int[maxnum+1]; for(int i=0;i<nums.length;i++) { sorted[nums[i]]=nums[i]; ...原创 2019-06-17 10:00:56 · 270 阅读 · 0 评论 -
手写java数据结构之栈、队列和二叉树的前序中序后序遍历
栈 public class MyStack { private long arr[]; private int top; public long arrQueue[]; public MyStack() { arr=new long[10]; arrQueue=new long[10]; top=-1; } public MyStack(int maxsize) { ...原创 2019-06-18 18:02:53 · 177 阅读 · 0 评论