查找数组中出现次数超过一半的数字
package test;public class Test3 { static int solve(int[] arr,int len){ int index = -1; int mid = (len)/2; int low = 0; int high = len-1; while(index != mid){ index = partition(