运行时间:330ms超过72.73% 用Java提交的代码占用内存:26716KB超过99.44%用Java提交的代码 import java.util.*; public class Solution { /** * retrun the longest increasing subsequence * @param arr int整型一维数组 the array * @return int整型一维数组 */ public int[] LIS (int[] arr) { // [2,1,5,3,6,4,8,9,7]...