自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 96. Unique Binary Search Trees

题目描述Givenn, how many structurally uniqueBST's(binary search trees) that store values 1 ...n?Example:Input: 3Output: 5Explanation:Given n = 3, there are a total of 5 unique BST...

2019-03-27 20:16:00 124

转载 1013. Pairs of Songs With Total Durations Divisible by 60

题目描述:In a list of songs, thei-thsong has a duration oftime[i]seconds.Return the number of pairs of songs for which their totalduration in seconds is divisible by60. Formally, ...

2019-03-27 19:35:00 168

转载 leetcode_2 Sort Array By Parity II(sort)

题目描述:Given an array Aof non-negative integers, half of the integers in A are odd, and half of the integers are even.Sort the array so that whenever A[i] is odd, i is odd; and whenever A[i]...

2019-02-24 21:52:00 120

转载 leetcode_1 Valid Anagram(sort)

题目描述:Given two strings s and t, write a function to determine if t is an anagram of s.Example 1:Input:s = "anagram", t = "nagaram"Output: trueExample 2:Input:s = "rat", t = "car"...

2019-02-22 20:46:00 140

转载 LeetCode_16. 3Sum Closest

一、题目描述Given an arraynumsofnintegers and an integertarget, find three integers innumssuch that the sum is closest totarget. Return the sum of the three integers. You may assume that each...

2018-11-24 10:14:00 113

转载 894. All Possible Full Binary Trees

一、题目描述Afull binary treeis a binary tree where each node has exactly 0 or 2children.Return a list of all possible full binary trees withNnodes. Each element of the answer is the root ...

2018-11-19 20:38:00 93

转载 [LeetCode]_63 Unique Paths II

一、题目描述A robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can only move either down or right at any point in time. The robot is trying to...

2018-11-16 18:30:00 92

转载 leetCode_Reverse Integer

一、 题目描述:Given a 32-bit signed integer, reverse digits of an integer.Example 1:Input: 123Output: 321Example 2:Input: -123Output: -321Example 3:Input: 120Output: 21Note:...

2018-11-14 19:13:00 98

转载 最大连续数列和

一、题目描述对于一个有正有负的整数数组,请找出总和最大的连续数列。给定一个int数组A和数组大小n,请返回最大的连续数列的和。保证n的大小小于等于3000。测试样例:[1,2,3,-6,1]返回:6二、解题思路找到原问题与子问题的关系。思路:从下标0开始逐步累加,初始化一个maxsum=0如果累加值大于maxsum则更新maxsum若,累加值为小于等于0时,累加则可以从新...

2018-11-06 19:44:00 294

转载 [Leetcode] 794. Valid Tic-Tac-Toe State 解题报告

一、题目描述:大致意思是:判定棋盘的状态是否符合规则A Tic-Tac-Toe board is given as a string arrayboard. Return True if and only if it is possible to reach this board position during the course of a valid tic-tac-...

2018-10-30 21:14:00 130

转载 特征提取项目总结---理论篇

一、词向量的表示方式:(1)one-hot方式:考虑一个词表V,里面的每一个词 wi都有一个编号 i∈{1,...,|V|},那么词 wi的one-hot表示就是一个维度为|V|的向量,其中第i个元素值非零,其余元素全为0。例如:w2=[0,1,0,...,0]Tw3=[0,0,1,...,0]T可以看到,这种表示不能反映词与词之间的语义关系,因为任意两个词的one-hot ...

2018-10-28 20:43:00 215

转载 829. Consecutive Numbers Sum------穷举法

一、审题求一个数字可以由几种连续的正整数表示ex: 9=9=4+5,9有两种表示15 = 15 = 8 + 7 = 4 + 5 + 6 = 1 + 2 + 3 + 4 + 5有四种表示方式二、解题思路首先题目要求在把所有的解找出来,首先想到穷举法,把可能的情况全部遍历一遍如果符合条件则计数++连续的整数即为等差数列,所以我们有等差数列求和公式可以用N=(i...

2018-09-26 20:29:00 220

转载 2018/09/24 中秋假期最后一天

假期前总结:任务总结:leetcode 完成2道——任务是4道。机器学习学习到神经网络——任务为完成神经网络题目。机器学习实战未开始——任务为完成第一张K邻近算法。算法课程听两次,未循环复习算法——任务为三次算法课程,一周一道课后题,与一周一次循环复习。假期内完成top250爬虫与影评爬虫——任务为实现多进程与存储csv文件的爬虫。上周总体比较浮躁,各方面都做...

2018-09-24 21:41:00 120

转载 2018/09/09

下周任务:1:python 多进程爬取豆瓣影评。2:自然语言处理概念入门。3:leetcode(at least 3 anwsers) 算法基础(at least three times a week)4:信息安全(at least two times a week)5:reading one hurndred years of loneliness(at least...

2018-09-09 16:07:00 111

转载 几种常用的服务器认证机制

OAuth概括:OAuth是一个开放授权标准,服务器端允许用户在不给第三方软件密码和账户的前提下,让第三方软件访问一定的服务器端资源。具体实现:OAuth允许第三方软件提供一个令牌,而不是用户名和密码来访问用户在服务器端的某些特定资源。某一个令牌授权只针对一个特定的第三方系统(例如,视频编辑软件在某一特定时间内,例如2小时,只能访问服务器端用户的某些特定资源(例如某一相册中的视频...

2018-08-28 21:25:00 522

转载 错误排查

排查错误要由整体到局部不断测试去确定出出错的点,然后根据出错的点以文档为主,google为辅助来进行查找解决方法。下次要做到错误排查时间的计时,不断提高效率,进步看得见。转载于:https://www.cnblogs.com/zydxx/p/9545106.html...

2018-08-27 22:00:00 263

空空如也

空空如也

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

TA关注的人

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