自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 Leetcode 557. Reverse Words in a String III 及 Java StringBuffer 和 StringBuilder类

目录Java StringBuffer 和 StringBuilder 类Leetcode 557. Reverse Words in a String III Java StringBuffer 和 StringBuilder 类 当对字符串进行修改的时候,需要使用 StringBuffer 和 StringBuilder 类。 和 String 类不同的是,StringBuffer 和 StringBuilder 类的对象能够被多次的修改,并且不产生新的未使用对象。 StringBuilder 类在 J

2020-08-19 03:11:17 145

原创 Leetcode 207. Course Schedule + Python中defaultdict用法详解

ContentsPython中defaultdict用法认识defaultdict:如何使用defaultdictLeetcode 207 题目描述:拓扑排序,DFS Python中defaultdict用法 认识defaultdict: 当我使用普通的字典时,用法一般是dict={},添加元素的只需要dict[element] =value即,调用的时候也是如此,dict[element] = xxx,但前提是element字典里,如果不在字典里就会报错。 defaultdict的作用是在于,当字典里的k

2020-08-05 01:25:31 256

原创 【LeetCode】279. 四平方定理

public int numSquares(int n) { while (n % 4 == 0){ n /= 4; } if ( n % 8 == 7){ return 4; } int a = 0; while ( (a *a +b*b ==n){ int b = (int) Math.pow

2019-07-02 22:29:06 115

原创 【LeetCode】938. Range Sum of BST 解题报告(Python)

题目描述 Given the root node of a binary search tree, return the sum of values of all nodes with value between L and R (inclusive). The binary search tree is guaranteed to have unique values. Example 1: ...

2019-06-11 11:08:22 214

转载 【实习】数据分析岗_试题整理

1. 过拟合的解决办法 1)增加数据 2)正则项 3)early stopping 4)控制模型复杂度: a. dropout(我觉得类似于subfeature) b. 剪枝、控制树深 c. 增大分割平面间隔 5)bagging 6)subsampe & subfeature 7)特征选择、特征降维 8)数据增强(加包含噪声的数据) 9)ensemble (参考林...

2019-04-07 11:50:40 1231

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除