1.首先安装cmake#wgethttp://www.cmake.org/files/v2.8/cmake-2.8.4.tar.gz#tarzxvfcmake-2.8.4.tar.gz#cdcmake-2.8.4#./configure#make#makeinstall2.安装前的系统设置建立mys...
分类:
数据库 时间:
2014-10-24 20:38:29
阅读次数:
265
一. RIFF概念在Windows环境下,大部分的多媒体文件都依循着一种结构来存放信息,这样的结构称为"资源互换文件格式"(Resources lnterchange File Format),简称RIFF。比如声音的WAV文件、视频的AV1文件等等均是由此结构衍生出来的。RIFF能够看做是一种树状...
分类:
其他好文 时间:
2014-10-24 20:35:34
阅读次数:
170
二维数组1.二维数组的定义定义形式:类型 数组名[行数][列数]int a[2][3]; // 共2行3列,6个元素2.二维数组的存储* C语言把二维数组当作是一维数组的集合,即二维数组是一个特殊的一维数组:它的元素是一维数组。例如int a[2][3]可以看作由一维数组a[0]和一维数组a[1]组...
分类:
编程语言 时间:
2014-10-24 20:36:53
阅读次数:
217
IntroductionAll of the configuration files for the Laravel framework are stored in theapp/configdirectory. Each option in every file is documented, so...
分类:
其他好文 时间:
2014-10-24 20:36:15
阅读次数:
177
数据库创建完成后,我们可能需要看看数据库中数据是否成功插入,很多人喜欢使用图形界面工具来管理SQLite数据库。SQLite图形界面管理工具有很多,我推荐使用SQLiteStudio工具,下载地址http://sqlitestudio.pl/?act=download。SQLiteStudio工具支...
分类:
数据库 时间:
2014-10-24 20:37:34
阅读次数:
256
这章节主要是介绍如何获取好友列表,在这里主要是做功能部分,后续更新的时候就将界面也做上去首先提供下核心代码1 xmppRosterStorage = [[XMPPRosterCoreDataStorage alloc] init];2 // xmppRosterStorage...
分类:
其他好文 时间:
2014-10-24 20:36:07
阅读次数:
168
可达矩阵的K次幂便是从i到j走K步能到达的方案数。注意处理k=0的情况。#include #include #include #include #include #include #include #include #include #include using namespace std; #de...
分类:
其他好文 时间:
2014-10-24 20:36:54
阅读次数:
191
2.1浏览因特网资源------------总结:方案、主机、路径方案:http,FTP,SMTP等URL为应用程序提供了一种访问资源的手段。告知浏览器如何对资源进行访问和处理,为用户和他们的浏览器提供了找到信息所需的所有条件,定义了用户所需的特定资源,它位于何处以及如何去获取它。2.2 URL语法...
分类:
Web程序 时间:
2014-10-24 20:34:56
阅读次数:
224
Hatsune MikuTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 262144/262144 K (Java/Others)Total Submission(s): 226Accepted Submission(s): 173Proble...
分类:
其他好文 时间:
2014-10-24 20:35:30
阅读次数:
226
先看几个具体的实例:1.腾讯娱乐:http://ent.qq.com/zt2014/qqent/h5.htm?from=groupmessage&isappinstalled=02.苏宁互联 :http://image.suning.cn/images/game/hlwx/index.html?fr...
分类:
Web程序 时间:
2014-10-24 20:34:09
阅读次数:
214
If x = 10 f(x) = a0 * f(x-1) + a1 * f(x-2) + a2 * f(x-3) + …… + a9 * f(x-10);对于这样一个式子,通过矩阵与线性变换的关系,可以轻松的构造出这样的矩阵A0:9 8 7 6 5 4 3 2 1 0 A1:1 1 1 1 1 1 ...
分类:
其他好文 时间:
2014-10-24 20:34:11
阅读次数:
211
题目Volume 0. Getting Started 开始10055 - Hashmat the Brave Warrior 10071 - Back to High School Physics 10300 - Ecological Premium 458 - The Decoder 494 -...
分类:
其他好文 时间:
2014-10-24 20:35:08
阅读次数:
263
C#修饰符之类修饰符:public、internal、 partial、abstract、sealed、staticC#修饰符之成员修饰符:public、protected、private、internal、sealed、abstract、virtual、override、readonly、cons...
原文链接: mysql 中 时间和日期函数 - redfox - 博客园 http://www.cnblogs.com/redfox241/archive/2009/07/23/1529092.html-----------------------------------------------.....
分类:
数据库 时间:
2014-10-24 20:36:11
阅读次数:
317
/********************************************************************** Author : Samson* Date : 04/18/2014* Test platform:* Linux ubuntu 3.2.0-58-gene...
分类:
系统相关 时间:
2014-10-24 20:34:12
阅读次数:
226
1、cat /proc/${pid}/status2、pstree -p ${pid}3、top -p ${pid} 再按H 或者直接输入 top -bH -d 3 -p ${pid}top -H手册中说:-H : Threads toggle加上这个选项启动top,top一行显示一个线程。否则,....
分类:
编程语言 时间:
2014-10-24 20:34:13
阅读次数:
203