/** * migratoryBirds * output int arr element that occus frequence is most high and rank at the lowest down layer * constriants: * arrList numberSize: 5<=n<=2*10to5 * it is guaranteed that each arr element is 1,2,3,4,5 * @param arr * @return */ public static int migratoryBirds(List<Integer&...