原创作品,出自 “深蓝的blog” 博客,欢迎转载,转载时请务必注明以下出处,否则追究版权法律责任。
深蓝的blog:
实验环境:Oracle VM VirtualBox 4.2.12
操作系统:CentOS 7(LINUX7)64bit
数据库 :Oracle 12C 64bit
实验目标:熟悉LINUX7下安装Oracle12C
操作演示:
(1)、安装Linux7...
分类:
数据库 时间:
2015-04-13 09:29:31
阅读次数:
383
oc 文件操作,查看目录下所有文件包括子文件夹内包含的所有文件,循环遍历递归
FileManager.m
#import "FileManager.h"
@implementation FileManager
+ (void)showFiles:(NSString *)path;{
// 1.判断文件还是目录
NSFi...
分类:
其他好文 时间:
2015-04-13 09:29:49
阅读次数:
126
public class Solution { public int search(int[] A, int target) { if(A==null || A.length==0) return -1; int l = 0; i...
分类:
其他好文 时间:
2015-04-13 09:27:59
阅读次数:
104
接下来我们要去看狮子王庆典,绕啊绕啊,终于进场了,说实话我对一大帮人扮演动物歌舞表演不是很感冒,静倒是觉得很好看,印象最深的是狮子王的主题曲,还有大象车,长颈鹿车,狮子王车,静举着手机拍视频。看完表演静发现手机好烫,而且充不进去电,静又生气了。坐了一会儿,我们去冒险世界的灰熊山谷,排队上了灰熊矿车,...
分类:
其他好文 时间:
2015-04-13 09:25:23
阅读次数:
134
Title:Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the te...
分类:
其他好文 时间:
2015-04-13 09:24:58
阅读次数:
142
Title:Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. Af...
分类:
其他好文 时间:
2015-04-13 09:27:27
阅读次数:
88
题目链接:Codeforces Round #298 (Div. 2)A. ExamAn exam fornstudents will take place in a long and narrow room, so the students will sit in a line in some o...
分类:
其他好文 时间:
2015-04-13 09:25:37
阅读次数:
157
HTML 事件属性HTML 属性HTML 视频/音频全局事件属性HTML 4 增加了使事件在浏览器中触发动作的能力,比如当用户点击元素时启动 JavaScript。如需学习更多有关事件编程的知识,请访问我们的 JavaScript 教程。下面列出了添加到 HTML 元素以定义事件动作的全局事件属性。...
分类:
Web程序 时间:
2015-04-13 09:25:27
阅读次数:
239
//StringBuffer的insert()方法和append()方法class aa{ public static void main (String[] args) { StringBuffer str = new StringBuffer("wlf"); System.out.pri...
分类:
移动开发 时间:
2015-04-13 09:24:55
阅读次数:
183
http://news.cnblogs.com/n/507041//平凡之路 1. Webbench Webbench 是一个在 linux 下使用的非常简单的网站压测工具。它使用 fork ()模拟多个客户端同时访问我们设定的 URL,测试网站在压力下工作的性能,最多可以模拟 3 万个并发连接.....
分类:
其他好文 时间:
2015-04-13 09:25:12
阅读次数:
110
刚开始以为只取录音时的最后一个sample来判断音量大小,发现都检测不到。后来搜索了一下,原来需要取一段sample来判断,有的是这一段取平均值作为音量大小。我这里是取出一段sample中的峰值(peak)作为音量audio.clip.GetData 得到的值是0-1,所以 我乘上 99 来把音量分...
分类:
编程语言 时间:
2015-04-13 09:25:40
阅读次数:
622
Given an integern, return the number of trailing zeroes inn!.Note:Your solution should be in logarithmic time complexity.cracking interview原题,2*5可以构成一...
分类:
其他好文 时间:
2015-04-13 09:25:10
阅读次数:
111
sessionStorage 和 localStorage 是HTML5 WebStorage API 提供的,可以方便的在web请求之间保存数据。有了本地数据,就可以避免数据在浏览器和服务器间不必要地来回传递。 sessionStorage、localStorage、cookie都是在浏览器端存....
分类:
其他好文 时间:
2015-04-13 09:24:30
阅读次数:
113
关于jQuery()方法的第二个参数,有下面这几种用法:1.jQuery(selector, [context])这种用法,相当于$(context).find(selector)或者context.find(selector)2.jQuery(html, [ownerDocument])文档对ow...
分类:
Web程序 时间:
2015-04-13 09:23:19
阅读次数:
129
我曾经犯过的错,希望我的孩子不要再犯!我曾经痛苦的经历,希望我的孩子不要再经历!1. 你所做的就是孩子所学的,用行动去教育孩子。2. 永远不要在家里发火,永远!3. 培养孩子一技之长,但不希望报很多培训班。希望他有个快乐的童年。4. 鼓励孩子多与异性接触,从小培养交际能力。5. 青春期教育,性知识。...
分类:
其他好文 时间:
2015-04-13 09:23:51
阅读次数:
113
Given an array of sizen, find the majority element. The majority element is the element that appears more than? n/2 ?times.You may assume that the arr...
分类:
其他好文 时间:
2015-04-13 09:23:09
阅读次数:
109
create PROCEDURE USP_GetByPager(_pageindex int,_pagesize int)BEGINdeclare _currentpageindex int DEFAULT (_pageindex-1)*_pagesize;select * from A a inn...
分类:
数据库 时间:
2015-04-13 09:22:19
阅读次数:
197