柚子96
柚子96
全部文章
未归档
Java学习(6)
python(8)
pytorch(12)
shell脚本(1)
一些project(1)
剑指offer(80)
动态规划(10)
华为笔试题(6)
基于深度学习的行人再识别学习(7)
机器学习(3)
配置(7)
归档
标签
去牛客网
登录
/
注册
柚子96的博客
全部文章
/ 未归档
(共4篇)
Arrays学习
Arrays是针对数组的工具类,可以进行 排序,查找,复制填充等功能。 大大提高了开发人员的工作效率。 1、复制数组 Arrays.copyOfRange(int[] original, int from, int to) 与使用System.arraycopy进行数组复制类似的, Arr...
2020-10-01
0
422
palindrome-partitioning
题目:牛客网 解题思路:(来源:https://leetcode-cn.com/problems/palindrome-partitioning/solution/hui-su-you-hua-jia-liao-dong-tai-gui-hua-by-liweiw/) 搜索问题主要使用回溯法...
2020-10-01
0
587
买卖股票的最佳时机
题目描述:力扣 解题思路: 暴力法,两重for循环 class Solution { public int maxProfit(int[] prices) { int maxprofit = 0; for(int i = 0; i < pr...
2020-10-01
0
364
跳跃游戏 II
题目:力扣 class Solution { public int jump(int[] nums) { int length = nums.length; int end = 0; int maxPosition = 0; ...
2020-10-01
0
380