Follow up for "Remove Duplicates": What if duplicates are allowed at most twice?For example, Given sorted array A = [1,1,1,2,2,3],Your function should...
分类:
其他好文 时间:
2014-08-05 00:24:38
阅读次数:
281
安装服务:mysql\bin\mysqld install删除服务:mysql\bin\mysqld remove启动(暂停)服务:net start(stop) mysql修改密码:mysql>set password =password('你的密码');mysql>flush privilege...
分类:
数据库 时间:
2014-08-04 13:45:57
阅读次数:
203
题目:Follow up for "Remove Duplicates":What if duplicates are allowed at most twice?For example,Given sorted array A = [1,1,1,2,2,3],Your function shou....
分类:
编程语言 时间:
2014-08-04 13:24:27
阅读次数:
256
题目大意:
给定一个可能含‘?’的字符串。然后问这个字符串有多少个子串是含有所有的字符都只出现两次。
其中'?' 可以被替换成任意字符,也可以被remove...
思路分析:
这是bestcoder的round #3的第三题。
这道题的做法和 4908 的做法差不多。
我们把 ‘?’ 左右两边的状态分别处理出来。
然后用map 计数。然后枚举左边的状态。同时枚举? 对应的字符...
分类:
其他好文 时间:
2014-08-04 11:12:17
阅读次数:
233
Disk Requirements:At least 11MB more space needed on the / filesystem.
linux 空间不够了,怎么办?
1> 查看空间多少:df -h
2> 查看当期内核: uname -r
3> 查找内核 rpm -qa | grep kernel
4> 删除多余的内核
su -c 'yum remove kern...
分类:
系统相关 时间:
2014-08-03 20:43:25
阅读次数:
434
原文地址:http://codex.wordpress.org/Plugin_API/Action_Referencemuplugins_loadedAfter must-use plugins are loadedregistered_taxonomyFor category, post_tag,...
分类:
其他好文 时间:
2014-08-03 17:59:45
阅读次数:
753
问题:将有序的数组中重复的数字去掉分析:由于有序所以只用和前一个比较就行class Solution {public: int removeDuplicates(int A[], int n) { int i,j; if(n==0 || n==1) return n...
分类:
其他好文 时间:
2014-08-03 17:42:35
阅读次数:
204
Corner cases!class Solution {public: ListNode *deleteDuplicates(ListNode *head) { if (!head) return head; if (!head->next) return hea...
分类:
其他好文 时间:
2014-08-03 07:51:34
阅读次数:
237
问题:将有序链表中的重复元素删除分析:由于有序,所以p结点是否重复只需要和它的前一节点比较是否相等就可以了,我们可以定义一个helper新头结点链表 将p结点与新链表的尾结点比较,若不相等则加入新链表中。class Solution{public: ListNode *deleteDup...
分类:
其他好文 时间:
2014-08-02 17:47:33
阅读次数:
210
问题描述:Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.For example,Given1->...
分类:
其他好文 时间:
2014-08-02 01:33:12
阅读次数:
249