自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 资源 (1)
  • 收藏
  • 关注

原创 NLPFirstLearningRecord-D2 数据集下载

数据集下载a. IMDB 电影评论数据集下载源:http://ai.stanford.edu/~amaas/data/sentiment数据集下载解压花费了很长时间,或许是因为tar.gz文件格式在windows进行解压本身就相对麻烦数据集获取之后有Readme文档说明,可以大致了解数据集基本情况:Large Movie Review Dataset v1.01. 核心数据集包括50k...

2019-04-10 19:40:00 342

原创 Leetcode No.7 Reverse Integer

题目:https://leetcode.com/problems/reverse-integer/简介:这道题目没什么特别介绍的,相对容易。class Solution { public int reverse(int x) { long res = 0; while (x != 0) { int num = x % 10; ...

2019-04-06 20:46:19 80

原创 Leetcode No.1014 Best SightSeeing Pair

题目:https://leetcode.com/problems/best-sightseeing-pair/简介:SightSeeing Score 计算:对于SightSeeing Spots的数组,The score of a pair (i < j) of sightseeing spots is (A[i] + A[j] + i - j) : the sum of the v...

2019-04-06 20:36:03 118

原创 Leetcode 3. Longest Substring Without Repeating Characters

题目:https://leetcode.com/problems/longest-substring-without-repeating-characters/简介:又是一推范围条件判断。。。class Solution(object): def lengthOfLongestSubstring(self, s): """ :type s: str ...

2019-04-05 21:30:17 70

原创 Leetcode No.873 Length of Longest Fibonacci Subsequence

题目:https://leetcode.com/problems/length-of-longest-fibonacci-subsequence/submissions/class Solution { public int lenLongestFibSubseq(int[] A) { int N = A.length; int n = 0; ...

2019-04-03 22:49:02 131

原创 Leetcode No.59 Spiral Matrix II

题目:https://leetcode.com/problems/spiral-matrix-ii/submissions/简介:额怎么说这道题目比较考验边界条件的考虑和程序设计,没有什么特别难的点和思路,只要把边界条件设置情况,穷举的思路就可以得到解答,不过在Discuss里面却发现一个很有意思的解答,加入前后左右的方向二元向量,让边界条件的选取多了一丝趣味,之前更多想从Matrix本身角度考...

2019-04-03 21:46:19 106

原创 Leetcode64-Minimum Path Sum

题目:https://leetcode.com/problems/minimum-path-sum/submissions/简介:题目也主要是以DP作为核心思想吧,在翻看过评论体系内的阐述和大部分解法,确实都离不开DP的核心点,所以今天这题就没有过多的赘述,不过确实也正是触及到我昨天提到的过程之上的思考点,就是当前目标解是动态变化的,在此题中的方向就是当前目标解与上一目标解之前存在定量的转化关...

2019-04-01 21:55:11 98

原创 Leetcode62-Uniquepath

题目地址:https://leetcode.com/problems/unique-paths/class Solution {public int uniquePaths(int m, int n) {int grid[][] = new int[m][n];for(int i = 0; i < grid.length; i++){grid[i][0] = 1;}for(in...

2019-03-31 22:00:51 173

Hive查询优化整理与Hive简易版思维导图

hive思维导图与hive优化的相关建议。纯属个人收集在线资料并个人实践之后整理

2019-04-30

空空如也

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

TA关注的人

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