题目
Given a sorted linked list, delete all duplicates such that each element appear only once.
For example,
Given 1->1->2, return 1->2.
Given 1->1->2->3->3, return 1->2->3.
方法
遍...
分类:
其他好文 时间:
2014-06-11 00:41:44
阅读次数:
207
The gray code is a binary numeral system where
two successive values differ in only one bit.Given a non-negative
integernrepresenting the total number...
分类:
其他好文 时间:
2014-06-10 19:38:39
阅读次数:
199
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
For example,
"A man, a plan, a canal: Panama" is
a palindrome.
"race a car" is no...
分类:
其他好文 时间:
2014-06-10 18:36:29
阅读次数:
193
今天早上一个同事说一个系统的定时备份EXP出问题了,异常内容有如下信息:ORA-00257:
archiver error. Connect internal only, until freed初步判断是归档日志存放的路径空间不足了。登陆服务器,df
-h 检查空间使用情况,发现归档路径下目录空间确...
分类:
其他好文 时间:
2014-06-10 16:20:22
阅读次数:
243
DBMS_RLS 是实现数据库表行级别安全控制的,这个包包含精细访问控制管理接口,这个接口是用来实现VPD(Virtual Private Database),虚拟私有数据库。DBMS_RLS只能在ORACLE的企业版(Enterpris Edition Only)本才可以用。...
分类:
数据库 时间:
2014-06-10 14:24:09
阅读次数:
315
Vmware Player添加网络连接,
选择“Host-only”:查看网卡ip=192.168.245.132:安装samba图形管理界面:#sudo apt-get install
system-config-samba启动samba图形管理界面:#sudo system-config-sam...
分类:
其他好文 时间:
2014-06-10 11:21:57
阅读次数:
257
zzs@ubuntu:~$ sudo /opt/lampp/lampp
startapache[sudo] password for zzs:XAMPP is currently only availably as 32 bit
application. Please use a 32 bit co...
分类:
其他好文 时间:
2014-06-08 23:04:45
阅读次数:
288
【题目】
Follow up for problem "Populating Next Right Pointers in Each Node".
What if the given tree could be any binary tree? Would your previous solution still work?
Note:
You may only use constant extra space.
For example,
Given the following binary tre...
分类:
其他好文 时间:
2014-06-08 15:46:22
阅读次数:
303
【题目】
Given an index k, return the kth row of the Pascal's triangle.
For example, given k = 3,
Return [1,3,3,1].
Note:
Could you optimize your algorithm to use only O(k) extra space?
【题意】
给定行索引k, k从0开始,返回该索引指向的杨辉三角的行
要求只能使用O(k)的额外空间
【思路】
...
分类:
其他好文 时间:
2014-06-08 15:46:02
阅读次数:
272
在Ubuntu下我们获取Android源码需要网络,所以VMware一定要配置好网络,安装了VMware后在宿主机的网上邻居中多了两个虚拟网卡,VMnet1、VMnet8,宿主机就是安装VMware的机器。
在客户机上VMWare提供了三种工作模式,host-only(主机模式)、NAT(网络地址转换模式)、bridged(桥接模式)。
打开客户机的配置项
可以看到安装时...
分类:
其他好文 时间:
2014-06-08 05:08:26
阅读次数:
331