码迷,mamicode.com
首页 >  
搜索关键字:add load    ( 56123个结果
leetcode——Two Sum 两数之和(AC)
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 target, whe...
分类:其他好文   时间:2014-06-09 23:14:45    阅读次数:264
linux中fork函数详解(转)
add by zhj: 在Linux,创建进程是用fork(),它其实就是拷贝父进程的数据段和其它数据,这相当于C函数调用中的值传递,这是此后两者的修改都互不影响。因为两者的数据虽相同,但却在不同的进程地址空间。原文:http://blog.csdn.net/jason314/article/det...
分类:系统相关   时间:2014-06-08 18:36:08    阅读次数:366
Oracle数据库精讲课程之Rac管理(集群组件、性能监控及调整、节点管理、备份和恢复)
对这个课程有兴趣的朋友可以加我的QQ2059055336和我联系  本课程主要是介绍Oracle RAC体系结构与工作机制,了解并掌握RAC数据库下的相关技术,如:cache Fusion、 Failover、load balance、FAN、OCR和Voting disk等,通过VMWARE虚拟环境,实践演练RAC数据库的安装部署、RAC数据库日常性能监控、备份和恢复、实例增加和删除以...
分类:数据库   时间:2014-06-08 17:07:35    阅读次数:288
Performing User-Managed Database-18.7、Performing Complete User-Managed Media Recovery
18.7、Performing Complete User-Managed Media Recovery 完成一致性备份,把数据库恢复到当前的scn是最好的结果。可以恢复整个数据库,恢复单个表空间,或恢复数据文件。一致性恢复不需要resetlogs打开数据库,非一致性恢复需要resetlogs打开数据库。Backup and Recovery Basics提供了关于介质恢复的信息。 18.7....
分类:数据库   时间:2014-06-08 15:27:02    阅读次数:364
ubuntu 关于sublime text3的一些应用
安装        现在可以通过ppa的方法来安装sublime text3 了,个人感觉就是有有点儿慢,毕竟要update一下。sudo add-apt-repository ppa:webupd8team/sublime-text-3 sudo apt-get update sudo apt-get install sublime-text-installer配置插件        安装完成之...
分类:其他好文   时间:2014-06-08 15:04:52    阅读次数:247
eclipse启动出错:Failed to load the JNI shared library jvm.dll
本人电脑是64位的,用的eclipse也是64位的,jdk也是64位。 前两天MyEclipse需要安装一个插件,需要32的jdk,于是修改系统的path为32的,包括JAVA_HOME和JRE_HOME。 今天再次使用eclipse时就出现了Failed to load the JNI shared library jvm.dll的错误。如图: 很是郁闷啊,网上一查,是64的eclip...
分类:系统相关   时间:2014-06-08 05:39:10    阅读次数:384
(截选)调用.app获取 返回的结果
模块/app/ 测试点 条件 期望结果 /.../login 登陆后初始化数据 post,true document.getElementById的表格 /.../loginout post,false 玩家属性 /.../load_attribute 显示数据(GUI)ok Get,false /.../load_attribu...
分类:移动开发   时间:2014-06-08 02:25:42    阅读次数:285
git 克隆,提交
git clone git-url git add . git comm -a -m ' desc ' git push...
分类:其他好文   时间:2014-06-08 02:21:09    阅读次数:217
多项式的表示
1.多项式的系数存放在数组中 # include # include # define max(x,y) ((x)>(y)?(x):(y)) using namespace std; const int N=100; struct poly { int arr[N]; int mexp; }; void add(poly &a,poly &b,poly &c) { memset(c.ar...
分类:其他好文   时间:2014-06-08 02:17:57    阅读次数:264
LeetCode——Two Sum
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 target, whe...
分类:其他好文   时间:2014-06-08 02:12:04    阅读次数:216
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!