Offer+=100 level
获赞
64
粉丝
11
关注
13
看过 TA
28
中国地质大学(武汉)
2020
安卓
IP属地:上海
暂未填写个人简介
私信
关注
2020-04-18 11:47
已编辑
中国地质大学(武汉) 安卓
抖音一面挂 2020/4/1 介绍一下项目 java内部类(https://www.cnblogs.com/Kundalini/p/11707928.html) 匿名内部类为什么变量置为final(https://blog.csdn.net/tianjindong0804/article/details/81710268) 多态介绍一下 原理是什么 怎么实现的(可能是让说底层实现)(https://www.cnblogs.com/doudouxiaoye/p/5662012.html) 设计模式说一下(说了工厂模式、单例、策略) 手写了个懒汉单例、DCL、饿汉。 问简单工厂、...
AslanFong:package LeetCode.ByteDance; import java.util.ArrayList; import java.util.Arrays; import java.util.List; /**  * @Author :FANG MIAO  * @Date :Created on 2020/2/5 15:26  * @Description:寻找前k个递增序列  * 输入:[2,1,4,5,8,3,7,10,2,5] k=2  * 输出:[1,4,5,8],[3,7,10]  */ public class TopKLenArray {     public static List<List<Integer>> topKArray(int[] arr, int k) {         if (k == 0)             return new ArrayList<>();         int[] dp = new int[arr.length];         Arrays.fill(dp, 1);                  for (int i = 1; i < arr.length; i++) {             if (arr[i] > arr[i - 1])                 dp[i] = dp[i - 1] + 1;         }         List<List<Integer>> res = new ArrayList<>();         //找最大的前k个子数组         for (int i = 0; i < k; i++) {             //找当前最大值             int maxIndex = 0;             for (int j = 0; j < dp.length; j++) {                 if (dp[j] > dp[maxIndex]) {                     maxIndex = j;                 }             }             int len = dp[maxIndex];//最长数组的长度             List<Integer> curArr = new ArrayList<>();             for (int j = maxIndex - len + 1; j <= maxIndex ; j++) {                 curArr.add(arr[j]);                 dp[j] = 1;//将这里重置,要不然后面的循环会有问题             }             res.add(new ArrayList<>(curArr));         }         return res;              }     public static void main(String[] args) {         int[] arr = {2,1,4,5,8,3,7,10,2,5};         List<List<Integer>> res = topKArray(arr, 2);         for (List<Integer> l:              res) {             for (int num:                  l) {                 System.out.print(num);                 System.out.print(" ");             }             System.out.println();         }     } } 楼主这题可以用dp哈。看来字节比较喜欢考dp和backtrack。 另外问一下楼主知道是哪里没有答好导致没通过吗? 谢谢~
投递字节跳动等公司10个岗位 >
0 点赞 评论 收藏
分享
2020-01-19 09:58
已编辑
中国地质大学(武汉) 安卓
0 点赞 评论 收藏
分享
关注他的用户也关注了:
牛客网
牛客企业服务