FeatureDetector::detect Detects keypoints in an image (first variant) or image set (second variant). FeatureDetector::create The following detector ty...
分类:
其他好文 时间:
2014-11-26 22:16:39
阅读次数:
190
原创文章,欢迎转载,转载请注明:文章来自[寒江孤叶丶的CrossApp之旅系列]
博客地址:http://blog.csdn.net/qq446569365
本文章是我在读Demo时候随手写的注释,分享出来供大家交流探讨。如有不对之处欢迎指出!
SecondViewController.h
#ifndef _Second_ViewController_h_
#define ...
分类:
移动开发 时间:
2014-11-26 14:24:26
阅读次数:
128
Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2.
After removing the second node from the end, the...
分类:
其他好文 时间:
2014-11-26 11:26:18
阅读次数:
252
一:利用jquery方法获得
1:取值
$(window.parent.document).find("#second_navigator").html();
2:改变父页面元素
$(window.parent.document).find("#second_navigator").html(“我是从iframe里传来的值”);
二:javaScript方...
分类:
其他好文 时间:
2014-11-25 16:28:23
阅读次数:
142
Codeforces Round #277.5 (Div. 2)
A. SwapSort
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
...
分类:
编程语言 时间:
2014-11-25 01:59:54
阅读次数:
140
html alert 一共有三种方式。第一种是最简单的直接在js的函数里alert("要输出的内容");这种直接就是一个弹出框,显示要输出的内容。第二种是带选择的弹出框,弹出个框,让你选择,确定或取消的那种,确定就继续执行,取消就取消执行。var second = confirm("继续吗");if...
分类:
Web程序 时间:
2014-11-25 00:15:51
阅读次数:
891
public class CacheHelper
{
private static object objCacheItem = new object();
public static void SetCache(string key, object value, int second)
{
lock ...
分类:
系统相关 时间:
2014-11-24 11:50:55
阅读次数:
206
【算法思路】时间复杂度限制在O(n log n),我们可以第一时间想到常用的二路归并排序,快速排序和堆排序,其中快排和堆排只适用于线性表,即数组,故这道编程题毫无疑问用二路归并排序;
【编程步骤】
* 1. 利用一个小技巧,可以设置慢行指针low和快行指针fast,把链表分成两部分来操作,即first和second链表
* 2. 递归排序first和second链表,即
first=sortList(head);
second=sortList(second);
* 3. 合并这两个链表,即:...
分类:
其他好文 时间:
2014-11-18 10:23:15
阅读次数:
185
题目描述:
Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2.
After removing the second node from t...
分类:
其他好文 时间:
2014-11-18 10:18:38
阅读次数:
170
一,datetime模块datetime模块定义了下面这几个类:datetime.date:表示日期的类。常用的属性有year,month,day;datetime.time:表示时间的类。常用的属性有hour,minute,second,microsecond;datetime.datetime:表示日期和时间。datetime.timedelta:表示时间间隔,即两个时间..
分类:
编程语言 时间:
2014-11-18 01:46:22
阅读次数:
211