摘要:
Given two strings s and t, determine if they are isomorphic.Two strings are isomorphic if the characters in s can be replaced to get t.All occ... 阅读全文
posted @ 2017-11-17 22:27
wangyaning
阅读(143)
评论(0)
推荐(0)
摘要:
Climbing Stairs You are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps... 阅读全文
posted @ 2017-11-17 22:27
wangyaning
阅读(105)
评论(0)
推荐(0)
摘要:
Remove all elements from a linked list of integers that have valueval.ExampleGiven: 1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6, val = 6Return: 1 --> 2 --... 阅读全文
posted @ 2017-11-17 22:27
wangyaning
阅读(109)
评论(0)
推荐(0)
摘要:
Description:Count the number of prime numbers less than a non-negative number, n 提示晒数法:http://en.wikipedia.org/wiki/Sieve_of_Eratostheneshttps://p... 阅读全文
posted @ 2017-11-17 22:27
wangyaning
阅读(363)
评论(0)
推荐(0)
摘要:
一直找不到opencv stereo matching的根据和原理出处,下面这个文章贴了个链接,有时间看看: Basically OpenCV provides 2 methods to calculate a dense disparity map:cvFindStereoCorrespond... 阅读全文
posted @ 2017-11-17 22:27
wangyaning
阅读(1031)
评论(0)
推荐(0)
摘要:
就是几个动物,自动排列生成什么的class Animal(object): def __init__(self,name,weight): self.name = name self.weight = weight def eat(self): self.weight +=1 def spea... 阅读全文
posted @ 2017-11-17 22:27
wangyaning
阅读(131)
评论(0)
推荐(0)
摘要:
vs2010中调用openMP,并添加头文件#include 代码来源:作者:gnuhpc出处:http://www.cnblogs.com/gnuhpc/ #include "stdafx.h"#include "cv.h" #include "highgui.h" #include #inc... 阅读全文
posted @ 2017-11-17 22:27
wangyaning
阅读(2170)
评论(0)
推荐(0)
摘要:
四种简单的图像显著性区域特征提取方法-----> AC/HC/LC/FT。分类: 图像处理 2014-08-03 12:40 4088人阅读 评论(4) 收藏 举报salient region detec显著性检测laviewpbt 2014.8.3 编辑Email:laviewpbt@sina.... 阅读全文
posted @ 2017-11-17 22:27
wangyaning
阅读(1092)
评论(0)
推荐(0)
摘要:
2010 年中兴面试题 编程求解: 输入两个整数n 和m,从数列1,2,3.......n 中随意取几个数, 使其和等于m ,要求将其中所有的可能组合列出来。// 21 题递归方法 //copyright@ July && yansha //July、yansha,updated。 #include... 阅读全文
posted @ 2017-11-17 22:27
wangyaning
阅读(304)
评论(0)
推荐(0)
摘要:
题目:输入一个正整数,若该数能用几个连续正整数之和表示,则输出所有可能的正整数序列。一个正整数有可能可以被表示为n(n>=2)个连续正整数之和,如: 15=1+2+3+4+5 15=4+5+6 15=7+8有些数可以写成连续N(>1)个自然数之和,比如14=2+3+4+5;有些不能,比如8.那么如何... 阅读全文
posted @ 2017-11-17 22:27
wangyaning
阅读(275)
评论(0)
推荐(0)
浙公网安备 33010602011771号