摘要:
` 阅读全文
摘要:
转自 "[LeetCode] Maximum Depth of Binary Tree 二叉树的最大深度" 阅读全文
摘要:
单项列表只能把后一个node中的所有数据copy到当前node再delete后一node。 阅读全文
摘要:
转自 "[LeetCode] Poor Pigs 可怜的猪" There are 1000 buckets, one and only one of them contains poison, the rest are filled with water. They all look the sam 阅读全文
摘要:
public class Solution { / @param s: the given string @param numRows: the number of rows @return: the string read line by line / public String convert( 阅读全文
摘要:
转自 "median of two sorted arrays" 该方法的核心是将原问题转变成一个寻找第k小数的问题(假设两个原序列升序排列),这样中位数实际上是第(m+n)/2小的数。所以只要解决了第k小数的问题,原问题也得以解决。 首先假设数组A和B的元素个数都大于k/2,我们比较A[k/2 1 阅读全文
摘要:
cvtColor(image,gray_image,CV_BGR2GRAY); //转灰度 要引用头文件opencv/opencv.hpp cv::resize(cur_img, cur_resize, cv::Size(), 0.5, 0.5); //改变尺寸 //显示匹配图像 //#includ 阅读全文
摘要:
"诗词名句网" 阅读全文
摘要:
八皇后问题 在国际象棋中,皇后是最强大的一枚棋子,可以吃掉与其在同一行、列和斜线的敌方棋子。 将八个皇后摆在一张8 8的国际象棋棋盘上,使每个皇后都无法吃掉别的皇后,一共有多少种摆法? 程序实现 程序摘自 "回溯法与八皇后问题" include include using namespace std 阅读全文
摘要:
OpenCV中的类型以宏定义的形式给出 type_c.h中片段 define CV_CN_MAX 512 define CV_CN_SHIFT 3 define CV_DEPTH_MAX (1 阅读全文