双连通分量 Tarjan...
分类:
其他好文 时间:
2014-12-22 22:51:47
阅读次数:
208
【1】工具主界面
【2】工具的功能介绍
2.1 查看Dll依赖的Dll列表(一级关系,如果依赖的Dll不在该目录下,则不显示到右侧)
如: 选择Dll的目录,软件自动获取该目录的Dll列表,并显示到左侧。选择左侧某个特定的Dll,右侧会显示该Dll依赖或被依赖的Dll列表。
2.2 查看Dll被依赖的Dll列表(即依赖此Dll...
分类:
其他好文 时间:
2014-12-22 22:51:55
阅读次数:
326
问题描述:
The set [1,2,3,…,n] contains a total of
n! unique permutations.
By listing and labeling all of the permutations in order,
We get the following sequence (ie, for n = 3):
"123""132""213""...
分类:
其他好文 时间:
2014-12-22 22:50:08
阅读次数:
226
问题描述:
Given two integers n and k, return all possible combinations of
k numbers out of 1 ... n.
For example,
If n = 4 and k = 2, a solution is:
[
[2,4],
[3,4],
[2,3],
[1,2],
[1,3],
...
分类:
其他好文 时间:
2014-12-22 22:48:41
阅读次数:
169
这篇记录 android 消息机制中,MainThread 向 WorkThread 发送消息。( MainThread → WorkThread )
步骤:
1、准备looper对象
2、在子线程中生成handler对象
3、在MainThread发送消息
代码:
layout:
<Button
android:id="@+id/buttonId"...
分类:
移动开发 时间:
2014-12-22 22:49:58
阅读次数:
221
/*
先输入未知数个数。
然后输入n*(n+1)的行列式。
*/
#include
#include
int hanglieshi(int a[],int n)
{
int j,s;
if(n==1) s=a[0];
else
{
for(s=0,j=0; j<n; j++)
{
int yuzishi(...
分类:
编程语言 时间:
2014-12-22 22:49:54
阅读次数:
195
思路:因为要满足字典序的拓扑排序,所以用了STL中的优先队列。
priority_queue<int,vector, greater > Q;
实现了权值小的优先级高,取出的时候保证序号是队列中最小的。
其他的和一般的拓扑排序无区别。...
分类:
编程语言 时间:
2014-12-22 22:50:05
阅读次数:
243
很多时候,Yarn 的用户希望知道自己运行过的某个 MapReduce job 的运行参数,此时可以从MapReduce History Server的 web console上查阅该 job的conf xml 文件内容。当然用户也可以先登录Yarn 的 web console的地址,然后再从上面跳转到 Job History Server 的 web console进行查阅。本文将以一个简单的图文例子来具体演示该功能。...
分类:
Web程序 时间:
2014-12-22 22:50:16
阅读次数:
309
创建Android Application工程:使用Eclipse的Android插件ADT创建Android工程,工程名称为Gpio,创建完成后将工程目录拷贝到packages/apps/文件夹下,并删除工程目录下的gen文件夹,不删除的话会造成类重复的错误。
src/com/android/gpio/Gpio.java:
package com.android.gpio;
import...
分类:
移动开发 时间:
2014-12-22 22:49:05
阅读次数:
310
看到此篇文章,就当作你已经学习好了面向对象的基本。
我们现在要介绍的是oc 关于内存的一系列介绍。
之前你也看到在第一片文章中。@@autoreleasepool
这个是在Xcode4.2及之后的版本中由于引入了ARC(Automatic Reference Counting)机制,
程序编译时Xcode可以自动给你的代码添加内存释放代码
但是在ObjC中没有垃圾回...
分类:
其他好文 时间:
2014-12-22 22:47:30
阅读次数:
227
在SharePoint开发中,经常会遇到网站部署,然而,当我们从开发环境,部署到正式环境以后,尤其是备份还原,所有用户组的用户,还依然是开发环境的,这时,我们就需要用PowerShell更新一下; PowerShell命令截图: Windows PowerShell ISE编辑工具编写Pow...
分类:
系统相关 时间:
2014-12-22 22:46:54
阅读次数:
357
#include #includeint main(){ int n, i, k, m; int array[50], *p; printf("n = \n"); scanf("%d", &n); p = array; for (i = 0; i < n; i++) *(p+i) = i+1; i ...
分类:
其他好文 时间:
2014-12-22 22:48:30
阅读次数:
200
http://m.weather.com.cn/data5/city.xml返回所有省/直辖市的编号01|北京,02|上海,03|天津,04|重庆,05|黑龙江,06|吉林,07|辽宁,08|内蒙古,09|河北,10|山西,11|陕西,12|山东,13|新疆,14|西藏,15|青海,16|甘肃,17...
分类:
其他好文 时间:
2014-12-22 22:47:29
阅读次数:
229
最近学了学PHP,看到这段代码function daddslashes($str){ return (!get_magic_quotes_gpc())?addslashes($str):$str; }发现get_magic_quotes_gpc())和addslashes()函数不太熟悉,就查了下资...
分类:
Web程序 时间:
2014-12-22 22:48:22
阅读次数:
223
运算符: 一、算术运算符: + - * / % ——取余运算 取余运算的应用场景: 1.奇偶数的区分。 2.把数变化到某个范围之内。——彩票生成。 3.判断能否整除。——闰年、平年。 int a = 10, b = 3; Console.WriteLine("10/3=" + (a / b));.....
①数据类型:基本数据类型和引用数据类型//----------------------------------------基础数据类型:数值型(整数类型byte,short,int,long浮点类型float,double),字符型,布尔型引用数据类型:类,接口,数组//--------------...
分类:
编程语言 时间:
2014-12-22 22:47:15
阅读次数:
244
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.If the fractional part is repeating,...
分类:
其他好文 时间:
2014-12-22 22:46:16
阅读次数:
197