转!http://blog.csdn.net/dabusideqiang/article/details/3827166111、求旋转数组的最小数字题目:输入一个排好序的数组的一个旋转,输出旋转数组的最小元素。分析:数组的旋转:把一个数组最开始的若干个元素搬到数组的末尾。例如数组{3, 4, 5, ...
分类:
编程语言 时间:
2015-05-03 15:59:41
阅读次数:
498
题目:leetcode
Count Primes
Description:
Count the number of prime numbers less than a non-negative number, n
分析:
求出比n小的素数的个数,这个问题可以用排除法做,参考http://www.cnblogs.com/grandyang/p/4462810.html
...
分类:
其他好文 时间:
2015-04-28 23:01:22
阅读次数:
287
class B
{
public:
B(){
cout << "构造函数" << endl;
}
B(const B &b)
{
cout << "复制构造函数" << endl;
}
~B()
{
cout << "析构函数" << endl;
}
};
B play(B b)
{
return b;
}
main函数输入如下代码:
{
B b...
分类:
其他好文 时间:
2015-04-23 11:06:48
阅读次数:
125
为了直观观察,以下代码中复制构造函数会把成员变量num+1
class B
{
int num;
public:
B():num(0){
cout << "默认构造函数" << " num= "<< num <<endl;
}
B(int n) :num(n){
cout << "带参构造函数" << " num= " << num << endl;
}
B(const...
分类:
其他好文 时间:
2015-04-23 10:55:44
阅读次数:
116
题目:约瑟夫环问题中,最后剩下的人是第几个人。如一共4个人,数到2的人出列,最后剩下的那个人是第1个人,返回1.
int Josephus(int n, int k)
{
if (n<=0 || k<1)
throw exception();
if (n==1)
return 1;//人为规定,n为1时返回1
int res=k%2;//只有两个人时,返回的人的下标(从零开...
分类:
其他好文 时间:
2015-04-22 11:38:09
阅读次数:
199
又是程序员面试宝典,又是被虐的死去活来。这次是dynamic_cast。得,查资料加总结吧C++有四种强制类型转换,分别是static_cast, dynamic_cast, reinterpret_cast, const_cast ,这四种转换网上一大堆讲解比如 Jerry19880126的htt...
分类:
编程语言 时间:
2015-04-17 20:08:29
阅读次数:
147
同学刚腾讯面试回来,趁着还没忘,就记下来了。
1.首先介绍一下你自己。
2.专业成绩怎么样。
3.你的专业方向和你做的项目怎么不想关。
4.问遥感项目中目标识别的方法,是你们自己开发的一些算法还是已有现成的一些算法,有哪些应用。
5.无人机项目中你主要做的什么工作,有什么应用,在什么环境下实现的。
6.怎么去实现验证码的自动识别,也就是破解。
7.如果让你去设计验证码,你考虑从哪...
分类:
编程语言 时间:
2015-04-15 11:23:47
阅读次数:
573
题目:leetcode
Text Justification
Given an array of words and a length L, format the text such that each line has exactly L characters and is fully (left and right) justified.
You should pack ...
分类:
其他好文 时间:
2015-04-14 19:46:32
阅读次数:
162
题目:leetcode
Longest Valid Parentheses
Given a string containing just the characters '(' and ')',
find the length of the longest valid (well-formed) parentheses substring.
For "(()", the l...
分类:
其他好文 时间:
2015-04-13 16:44:58
阅读次数:
99
题目:leetcode
Interleaving String
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.
For example,
Given:
s1 = "aabcc",
s2 = "dbbca",
When s3 = "aadbbcb...
分类:
编程语言 时间:
2015-04-10 22:34:40
阅读次数:
207