#include
#include
#include
#include
#include
using namespace std;
template //新定义的类型
T min3(T a, T b, T c)
{
T min;
if(a
{
min=a;
}
else if(b
{
...
分类:
其他 时间:
2015-01-26 22:57:40
收藏:
0 评论:
0 赞:
0 阅读:
333
假如BOSS给了一个PM不靠谱的需求,那么站在PM的角度上,我会怎么处理呢?在知乎上看了好多达人以及同行的真知灼见,自己也是有一番小的思考,这里做一个总结吧
其实,这种不靠谱的产生的最主要的原因无非是所处的位置和立场不同,因而会发出不同的声音。
作为一个BOSS,更可能是从当前整个市场的行情,走向去看问题,觉得我们应该做一个XXX产品,实现XXX需求,然后达到XXX目标。
作为一个PM,更多...
分类:
其他 时间:
2015-01-26 22:57:30
收藏:
0 评论:
0 赞:
0 阅读:
317
public class C4Demo09ForNitificationActivity extends Activity {
/** Called when the activity is first created. */
NotificationManager nm;
@Override
public void onCreate(Bundle savedIns...
分类:
移动平台 时间:
2015-01-26 22:57:20
收藏:
0 评论:
0 赞:
0 阅读:
352
public class C6Demo01_DownImageActivity extends Activity {
/** Called when the activity is first created. */
private Button btn;
private ImageView iv;
private URL url;
private InputStream inp...
分类:
移动平台 时间:
2015-01-26 22:57:00
收藏:
0 评论:
0 赞:
0 阅读:
314
1? 类会提供默认的拷贝构造函数
–默认的拷贝构造函数会完成所有成员的逐个复制
2? 拷贝构造的调用时机:
–函数值传递时
–函数返回时
–用同类型的对象初始时
3? 何时需要自定义拷贝构造函数?
–类中有指针(或引用 )成员时
–希望自定义对象...
分类:
编程语言 时间:
2015-01-26 22:56:50
收藏:
0 评论:
0 赞:
0 阅读:
384
1:太多的松香可能会影响引脚连接的测量,比如元件引脚和元件引脚之间应该是连接的,结果万用表量不出来。
2:对于一些小芯片的拆焊,能用热风枪,最好用热风枪,不容易损坏小焊盘。
3:给小焊盘上锡时,最好顺着一个方向,不要来回移动,免得可能动作太快带起小焊盘。
4:有些器件的塑料是容易烫坏的,用热风枪时,要小心,比如USB元件。
5:升压电路的滤波电容要考虑耐压.
6:烙铁通电后一定要立刻蘸上...
分类:
其他 时间:
2015-01-26 22:56:40
收藏:
0 评论:
0 赞:
0 阅读:
2303
Main.xml程序如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertica...
分类:
移动平台 时间:
2015-01-26 22:56:30
收藏:
0 评论:
0 赞:
0 阅读:
912
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/43155725
Say you have an array for which the ith element is the price of a given stock on day i.
Design an algorithm to find the maximum profit. You may complete as many tr...
分类:
其他 时间:
2015-01-26 22:56:20
收藏:
0 评论:
0 赞:
0 阅读:
316
题目大意:给定平面上的一个点集,求这个点集所能组成的周长最小的三角形
与平面最近点对一个道理- - 这个题也是分治做法
做法如下:
1.记录全局答案ans
2.将所有点按照x值排序
3.定义Solve(l,r)为处理[l,r]区间内的最小三角形
4.对于每层Solve(l,r),将当前区间分成左右两部分,分别递归处理
5.两侧的最小三角形都以处理完毕,现在我们要处理的就是两区间之间的...
分类:
其他 时间:
2015-01-26 22:56:10
收藏:
0 评论:
0 赞:
0 阅读:
334
Problem Description
用N个三角形最多可以把平面分成几个区域?
Input
输入数据的第一行是一个正整数T(1
Output
对于每组测试数据,请输出题目中要求的结果.
Sample Input
2
1
2
Sample Output
2
8
代码如下:
#include
using namespace std;
long...
分类:
其他 时间:
2015-01-26 22:56:00
收藏:
0 评论:
0 赞:
0 阅读:
299
Taking Bus
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 32768/32768
K (Java/Others)
...
分类:
其他 时间:
2015-01-26 22:55:40
收藏:
0 评论:
0 赞:
0 阅读:
284
题目大意:
给你一张无向图,其中有的边为白色有的边为黑色,问你是否有一颗生成树并且它的白色边是斐波那契数列中的一个数
思路:
求出白边最少和最多的生成树之后看是否有一个斐波那契数在这之间就可以
代码
#include
#include
#include
#include
#include
using namespace std;
int T;
struct edge{
int u...
分类:
其他 时间:
2015-01-26 22:55:30
收藏:
0 评论:
0 赞:
0 阅读:
324
Text Reverse
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 18240 Accepted Submission(s): 6900
Problem Description
Ignatius...
分类:
其他 时间:
2015-01-26 22:55:20
收藏:
0 评论:
0 赞:
0 阅读:
343
tomcat 配置默认项目路径 ,导致项目启动两次的解决方法...
分类:
其他 时间:
2015-01-26 22:55:10
收藏:
0 评论:
0 赞:
0 阅读:
360
高德iOS面试整理(顺序有些乱,一面跪了)
1.简单自我介绍
2.聊c语言
3.两个数比较大小不用if和三目运算符
4.int转化为bit数组
5.多态和隐藏
6.const 和define区别
7.String类实现拷贝构造函数注意事项,是否有必要重写
数据结构
1.树层次遍历
2.链表删除
iOS
1.通知和delegate
2.ViewContr...
分类:
移动平台 时间:
2015-01-26 22:54:40
收藏:
0 评论:
0 赞:
0 阅读:
446
A Walk Through the Forest
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 5999 Accepted Submission(s): 2215
Problem Description
Jimmy expe...
分类:
其他 时间:
2015-01-26 22:54:30
收藏:
0 评论:
0 赞:
0 阅读:
356
Problem Description
Given an integer N(0 ≤ N ≤ 10000), your task is to calculate N!
Input
One N in one line, process to the end of file.
Output
For each N, output N! in one line.
...
分类:
其他 时间:
2015-01-26 22:54:10
收藏:
0 评论:
0 赞:
0 阅读:
286
Problem Description
The least common multiple (LCM) of a set of positive integers is the smallest positive integer which is divisible by all the numbers in the set. For example, the LCM of 5, 7 and...
分类:
其他 时间:
2015-01-26 22:54:00
收藏:
0 评论:
0 赞:
0 阅读:
416
在android开发中,我们常常会遇到界面布局控件不确定的情况。由于某些功能的原因或者为了体现某些app的特色等这些原因会导致我们在实现界面布局时需要动态去加载一些控件,那么下面就来介绍一下如何用动态加载控件来简单实现QQ中好友印象的功能,其中也会提到如何来动态加载一个XML的配置文件。
那么要实现好友印象的功能,我们需要通过以下这几个步骤:
1...
分类:
移动平台 时间:
2015-01-26 22:53:50
收藏:
0 评论:
0 赞:
0 阅读:
468
uva 11384 Help is needed for Dexter
Dexter is tired of Dee Dee. So he decided to keep Dee Dee busy in a game. The game he planned for her is quite easy to play but not easy to win at least not ...
分类:
其他 时间:
2015-01-26 22:53:40
收藏:
0 评论:
0 赞:
0 阅读:
369