码迷,mamicode.com
首页 > 2015年03月20日 > 全部分享
LeetCode – Refresh – Longest Substring Without Repeating Characters
For this problem, we are OK to use hash set, since no numbers are needed. 1 class Solution { 2 public: 3 int lengthOfLongestSubstring(string s) { ...
分类:其他好文   时间:2015-03-20 09:09:30    阅读次数:101
玩转树莓派-RaspBerry,用Screen让Pi自己跑去吧
Screen是一个虚拟终端管理器。我们可以用它在后台管理终端界面,这样SSH断开后就不用怕正在进行的操作中断了。 一、安装 sudo?apt-get?update sudo?apt-get?install?screen 二、使用 1、创建一个虚拟...
分类:Web程序   时间:2015-03-20 08:08:11    阅读次数:248
一个技术派创业者的反思
我认为技术派创业者最大的短板是缺少商业思维,另一个短板是对技术或产品洁癖,错失商业化机会。...
分类:其他好文   时间:2015-03-20 08:06:18    阅读次数:181
[Oracle]行列转换(行合并与拆分)
在 Oracle 中, 将某一个栏位的多行数据转换成使用逗号风格的一行显示,可以使用函数 wmsys.wm_concat 达成。 也就是说有一个栏位的值类似: user1,user2, 现在要把它拆分成两行显示。...
分类:数据库   时间:2015-03-20 08:06:46    阅读次数:207
Hark的数据结构与算法练习之桶排序
算法说明桶排序的逻辑其实特别好理解,它是一种纯粹的分而治之的排序方法。举个例子简单说一下大家就知道精髓了。假如对11,4,2,13,22,24,20 进行排序。那么,我们将4和2放在一起,将11,13放在一起,将22,24,20放在一起。 然后将这三部分分别排序(可以根据实现情况任意选择排序方式,我...
分类:编程语言   时间:2015-03-20 08:07:50    阅读次数:168
LeetCode – Refresh – Linked List Cycle
Just use two pointers. CC150 classical question 1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNo...
分类:其他好文   时间:2015-03-20 08:06:22    阅读次数:125
LeetCode – Refresh – Longest Common Prefix
Seach one by one. 1 class Solution { 2 public: 3 string getNext(const string& s1, const string& s2) { 4 int len = min(s1.size(), s2.size()...
分类:其他好文   时间:2015-03-20 08:06:00    阅读次数:121
LeetCode – Refresh – Longest Substring with At Most Two Distinct Characters
At first beginning, I was trying to use hash set to record the characters. But I found that was wrong.Because if there are couple same chars, when you...
分类:其他好文   时间:2015-03-20 08:06:07    阅读次数:164
Linux下好用的简单实用命令
1、你是否为在输入了一大串命令之后发现第一个字符打错了而苦恼?只能删除重来嘛?或者一步步左移光标? NO,一个组合键轻松搞定Ctrl+A -----到命令行首Ctrl+E ------到命令行末Ctrl+W ------删除光标处向前一个单词(到下一个空格键处)和文本编辑中的home和end键一样好...
分类:系统相关   时间:2015-03-20 08:05:07    阅读次数:187
【转载】有哪些省时小技巧,是每个Linux用户都应该知道的
前言:有网友在问答网站Quora上提问:“有哪些省时小技巧,是每个Linux用户都应该知道的?” Joshua Levy 平常就在 Linux 平台工作,并且他积累了不少实用命令行技巧,他在回复中精选出一部分。对技术用户来说,这些技巧挺重要或实用,但知道的人并不多。下文略有点长,一般来说,用户也不需...
分类:系统相关   时间:2015-03-20 08:06:29    阅读次数:167
Java知多少(10)数据类型及变量
Java 是一种“强类型”的语言,声明变量时必须指明数据类型。变量(variable)占据一定的内存空间。不同类型的变量占据不同的大小。Java中共有8种基本数据类型,包括4 种整型、2 种浮点型、1 种字符型、1 种布尔型,请见下表。Java基本数据类型数据类型说明所占内存举例备注byte字节型1...
分类:编程语言   时间:2015-03-20 08:06:25    阅读次数:154
LeetCode – Refresh – Longest Palindromic Substring
O(n2): 1 class Solution { 2 public: 3 string getP(string s, int start, int end) { 4 while (start >= 0 && end result.size()) result = s1;1...
分类:其他好文   时间:2015-03-20 08:05:24    阅读次数:123
LeetCode – Refresh – Length of Last Word
Tried it with spliting words method. But need to check empty situation. 1 class Solution { 2 public: 3 int lengthOfLastWord(const char *s) { 4 ...
分类:其他好文   时间:2015-03-20 08:03:07    阅读次数:129
输出类似于国际象棋的棋盘
1 document.onclick = function () {//这个函数将输出类似于国际象棋的棋盘 2 var tempx = 0; //x坐标 3 var tempy = 0; //y坐标 4 var...
分类:其他好文   时间:2015-03-20 08:05:03    阅读次数:107
一些基础的 Linux 问题
一些基础的 Linux 问题最近更新日期:2005/05/23--------------------------------------------------------------------------------一些基础的 Linux 问题与讨论: 注意:如果您有更好的试题,或者是有相关的...
分类:系统相关   时间:2015-03-20 08:05:03    阅读次数:225
LeetCode – Refresh – Longest Consecutive Sequence
It use the hashset to do the tricks. 1 class Solution { 2 public: 3 int longestConsecutive(vector &num) { 4 int len = num.size(), result =...
分类:其他好文   时间:2015-03-20 08:02:46    阅读次数:146
LeetCode – Refresh – Linked List Cycle II
1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *next; 6 * ListNode(int x) : val(x), ne...
分类:其他好文   时间:2015-03-20 08:03:53    阅读次数:125
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!