problem: Implement pow(x, n). Hide Tags Math Binary Search 题意:求x的n次幂 </form> thinking: (1)最简单想到的是直观上的数学幂函数求法,測试通过。算法时间复杂度为O(n) (2)依照标签提示,使用二分搜索法。pow(x ...
分类:
其他好文 时间:
2017-07-01 20:05:21
阅读次数:
133
How to implement a effecitive AE. AE(自己主动曝光) 1)try Minual exposure //time,line 2)try Max exposure //average target help to control it. 3)change gain g ...
分类:
其他好文 时间:
2017-07-01 16:15:54
阅读次数:
134
We have modal implement and now we want to implement close functionality. Becuase we use a structure directive to do open modal on click functionality ...
分类:
其他好文 时间:
2017-06-30 21:03:59
阅读次数:
159
通过编写串口助手工具学习MFC过程 因为以前也做过几次MFC的编程,每次都是项目完成时,MFC基本操作清楚了,但是过好长时间不再接触MFC的项目,再次做MFC的项目时,又要从头开始熟悉。这次通过做一个串口助手再次熟悉一下MFC,并做了一下记录,以便方便以后查阅。做的过程中多是遇到问题直接百度和谷歌搜... ...
分类:
编程语言 时间:
2017-06-29 19:26:15
阅读次数:
485
Python单元测试unittest中提供了一下四种装饰器实现测试跳过和预期故障。(使用Python 2.7.13) 请查考Python手册中: The following decorators implement test skipping and expected failures: #以下装饰 ...
分类:
编程语言 时间:
2017-06-27 19:52:00
阅读次数:
122
【题目描述】Asthetitledescribed,youshouldonlyusetwostackstoimplementaqueue‘sactions.Thequeueshouldsupportpush(element),pop()andtop()wherepopispopthefirst(a.k.afront)elementinthequeue.Bothpopandtopmethodsshouldreturnthevalueoffirstelement.正如标题所述,你需..
分类:
其他好文 时间:
2017-06-26 10:26:39
阅读次数:
113
Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below ...
分类:
其他好文 时间:
2017-06-25 17:49:56
阅读次数:
124
Implement regular expression matching with support for'.'and'*'. 题意:' . '能匹配任意字符,‘ * ‘表示之前的那个字符可以是0个、1个或者多个,(注意:s= ba和 p= a*bc也是匹配的,*表示p中 * 之前的字符为0个,但 ...
分类:
其他好文 时间:
2017-06-25 12:44:17
阅读次数:
154
本文的是基于我对邓俊辉老师编著《数据结构(C++语言版)(第3版)》上关于KMP算法的理解,和网络上一些大神们写的博客,所写。建议将我写的关于implement strstr这题的博客和本篇连起来读。 不难发现,这里存在大量的局部匹配,针对暴力解法,若每次匹配的过程都是最后一位失配(即不匹配),文本 ...
分类:
编程语言 时间:
2017-06-22 00:18:01
阅读次数:
159
Implement strStr(). Returns a pointer to the first occurrence of needle in haystack, or null if needle is not part of haystack. 题意:判断一个字符是否在另一个中,若是,则返 ...
分类:
其他好文 时间:
2017-06-21 21:10:35
阅读次数:
162