题目
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d =
target? Find all unique quadruplets in the array which gives the sum of target.
Note:
...
分类:
其他好文 时间:
2014-06-18 12:17:57
阅读次数:
179
题目
Given an array of integers, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the...
分类:
其他好文 时间:
2014-06-18 12:05:44
阅读次数:
244
题目
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would ...
分类:
其他好文 时间:
2014-06-17 22:39:41
阅读次数:
274
题目
Given an array S of n integers, are there elements a, b, c in S such that a + b + c =
0? Find all unique triplets in the array which gives the sum of zero.
Note:
Elements in a tr...
分类:
其他好文 时间:
2014-06-17 22:04:49
阅读次数:
292
rman备份脚本
#! /bin/bash
su - oracle
rman target /
backup AS COMPRESSED BACKUPSET
database
include current controlfile format'/orabak/db_%d_%T_%s'
plus archivelog format'/orabak/a...
分类:
系统相关 时间:
2014-06-17 19:33:13
阅读次数:
348
实时操作系统Nucleus Plus提供了6种进程间通信方式,分别为:邮箱(mailboxes)、消息队列(queues)和管道(pipes)、信号量(semaphores)、事件集(event groups)和消息(signals)。前三者用于进程间通信,后三者用于进程同步,本文总结了Nucleus Plus进程间通信方式。...
分类:
其他好文 时间:
2014-06-17 19:19:14
阅读次数:
268
初识泛型算法
理解算法的最基本方法是了解他们是否读取元素、改变元素或是重排元素顺序!
只读算法
#include
#include
using namespace std;
//对vec中的元素求和,初值是0
int sum=accumulate(vec.cbegin(), vec.cend(), 0);
这里面第三个参数决定了函数使用哪个加法运算符以及返回值类型。
...
分类:
编程语言 时间:
2014-06-17 19:12:26
阅读次数:
261
innodb_buffer_pool_size80%(系统缓存池)innodb_log_file_size4G(mysql5.5中限定的最大数值,redo日志增大提高性能,redo日志小崩溃后恢复更快)\\开始将这个值设置为512M可以拥有1G的的redo日志,会使得拥有充裕的写操作空间max_connections151(默认值,需要修改)innodb_file..
分类:
数据库 时间:
2014-06-17 17:53:28
阅读次数:
289
#100以内整数和
#!/bin/sh
declare-iSUM=0
for((i=1;i<=100;i+=1))
do
letSUM+=$i
done
echo$SUM
#!/bin/sh
declare-iSUM=0
foriin{1..100}
do
letSUM+=$i
done
echo$SUM
#100以内偶数和
#!/bin/sh
declare-iSUM=0
for((i=2;i<=100;i+=2))
do
letSUM+=$i
done
echo$SUM..
分类:
其他好文 时间:
2014-06-17 17:46:32
阅读次数:
232
当:decimal sum = 123456.784M;sum = decimal.Round(sum, 2 , MidpointRounding.AwayFromZero);sum的值为:123456.78当:decimal sum = 123456.785M;sum = decimal.Roun...
分类:
其他好文 时间:
2014-06-17 15:35:57
阅读次数:
184