归并排序demo
public class Merge_sort{
public static void main(String[] args) {
// TODO Auto-generated method stub
int[] num = {9, 8, 7, 6, 5, 4, 3, 2, 1, 0};
sort(num, 0, num.length - 1);
for (int i = 0; i < num.length; i++) {
System.out.println(num[i])






