public class Solution { public int MoreThanHalfNum_Solution(int [] array) { //用两个值记录当前值和次数 int reult = array[0],times = 1; for(int i = 1;i<array...