package PEU.P.sort; //作者,著作权人: 罗瑶光,浏阳 //思想,rohini上课教授的。 public class BTreeSort{ public Leaf root; public Leaf heap; int c; int a1[]; public int[] sort(int [] a) { //make tree c=0; a1=new int[a.length]; if(root==null){ root=new Leaf(); root.value[0]=a[0]; root.hasO1=1; } for(int i=1;i