发布时间:2015-03-31 16:52:28
The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility)P A H NA P L S I I GY I RAnd then read line by line: "PAHNAPLSIIGYIR"Write the code that.........【阅读全文】
发布时间:2015-03-31 13:06:39
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring.注意:写的过程中问题不少 :穷举是跑不过的。要使用dp ,另外在循环中调用函数效率太低,我们要先把参数保留,.........【阅读全文】
发布时间:2015-03-29 12:04:55
There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).1.注意:M+N是偶数时要求平均值。2.并且用起始位置和个数来表示数组。3.求第K个值,我们不断在两个数组平分k来进行计算,去掉小的那个数组。4.........【阅读全文】
发布时间:2015-03-28 14:20:55
由于工作的关系,开始接触机器学习这个技术领域,虽然自己的工作看似和机器学习关系不大,但是利用机器学习进行大数据的分析却是至关重要的。因此从今天开始自己再开始一个关于“机器学习”的系列笔记,将主要记录整理自己学习的收获。今天是对于机器学习的一个基本的介绍。一、什么是机器.........【阅读全文】