Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. For example,Given 1->2...
分类:
其他好文 时间:
2014-11-16 08:14:02
阅读次数:
220
一.概述复制数据库即使用RMAN工具的DUPLICATE命令从源数据库拷贝所有或者一部分的数据到目标数据库。复制数据库技术在多种场景都是特别有用的,如创建standby数据库,创建用于不同目的地测试环境,数据库迁移等。使用DUPLICATE命令复制数据库能自动配置与源数据库不同的DBID,..
分类:
数据库 时间:
2014-11-15 06:39:30
阅读次数:
197
Problem:given an array that contains duplicates (except one value), find the one value that does not have a duplicate in that array. Explain the compl...
分类:
其他好文 时间:
2014-11-15 06:35:12
阅读次数:
202
下划线_ underscore横线- minus;hyphen以及手机键盘上的井号键# number sign,英语国家是hash,美语是pound,星号键* asterisk,star(美语),数学公式中作multiply感叹号! exclamation mark冒号: colon双引号“” do...
分类:
其他好文 时间:
2014-11-13 16:18:41
阅读次数:
136
??
更换内核版本
原来digilent的内核版本是linux-3.3-digilent更改为3.3.0-xillinux-1.0-rich+
参考:http://xillybus.com/xillinux-rich-kernel
错误提示:DISAGREES ABOUT VERSION OF SYMBOL MODULE_LAYOUT,解决方法
问题描述参见:http://www.ibm...
分类:
数据库 时间:
2014-11-12 21:17:56
阅读次数:
188
当用NDK编译的库在运行加载时报如下错:
dlopen("/data/data/xxx.xxx.xxx/lib/libxxx.so")
failed: dlopen failed: cannot locate symbol "__exidx_end" referenced by "libxxx.so"...
解决办法如下:
在你报错的库libxxx.so的编译脚本Android.mk请加...
分类:
其他好文 时间:
2014-11-12 11:53:22
阅读次数:
1450
问题描述:
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets.
For ex...
分类:
其他好文 时间:
2014-11-12 11:46:52
阅读次数:
169
在Linux上编译Qt的时候configure出来的Makefile传递给g++的参数visiblility=hidden,然后就会调用Qt库所使用的第三方库libpng库源代码函数声明添加上__attribute__ ((visibility("hidden"))),这个函数我这里是png_set...
分类:
其他好文 时间:
2014-11-11 18:47:31
阅读次数:
144
递归public class Solution {
public int findMin(int[] num) {
return helper(num, 0, num.length-1);
}
//with duplicate
public static int helper(int[] a, int left, int right){
...
分类:
编程语言 时间:
2014-11-11 12:40:09
阅读次数:
211
以前装过10g的,没有做笔记,昨天使用duplicate方法装了个11g ADG,过程艰辛,记录下:
一、环境配置
主库
IP地址:192.168.233.128/24
操作系统版本:rhel5.8 64bit
数据库版本:11.2.0.1 64bit
数据库sid名:orcl
数据库名:orcl
数据库db_unique_name:orcl1
主机名:pr...
分类:
数据库 时间:
2014-11-11 10:52:44
阅读次数:
297