/* 假设一对耗子每个月都可以生一对小耗子。小耗子生长3个月后,从第4个月开始也就能够生小耗子。问:假设所有的耗子都不死的话,那么20个月后一共有多少只耗子? */#include void main(){ int old = 2,first = 0,second = 0,third = 0; .....
分类:
编程语言 时间:
2014-08-25 22:32:34
阅读次数:
313
#include using namespace std;void swap(int* p,int* q){ int temp = *p; *p = *q; *q = temp;}//快速排序int partition(int *ptr,int first, int last){ ...
分类:
其他好文 时间:
2014-08-25 21:07:04
阅读次数:
268
#include using namespace std;void merge(int* ptr,int first, int mid, int last){ int len = last - first + 1; int *temp = new int[len]; ...
分类:
其他好文 时间:
2014-08-25 20:59:14
阅读次数:
229
constraints最大的好处便是屏幕适配一般情况下导航栏都是44加上状态栏的20,这样可以让我们按照比例来布局,就不必固定或者等于高宽度来布局控件以消除警告,选中两个控件然后101/43代表的就是乘法系数的比例值,可以通过上面的first和second直接得出想要的结果,这样在不同屏幕时都会按照...
分类:
其他好文 时间:
2014-08-25 20:48:14
阅读次数:
317
1. [代码][PHP]代码 tit=array(); // strings with titles for first row $this->arr=array(); // data to show on cells $this->fo...
分类:
Web程序 时间:
2014-08-25 19:03:44
阅读次数:
306
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.思路: 1 cla...
分类:
其他好文 时间:
2014-08-25 18:38:04
阅读次数:
211
题目:定义一个函数,输入一个链表的头结点,反转该链表并输出反正后链表的头结点。#include#includetypedef struct node{ int Element; struct node *Link;}Node;Node *ReverseList(Node *first){...
分类:
其他好文 时间:
2014-08-25 16:48:44
阅读次数:
143
insert into reg_user (id,name,password,area_code,reg_time,first_pswd,record_type)
select l.reg_user_id,l.entry_person,'4QrcOUm6Wau+VuBX8g+IPg==',l.area_code,sysdate,'123456',l.type
from lo...
分类:
数据库 时间:
2014-08-25 13:27:04
阅读次数:
248
First_Value返回结果集中某列第一条数据的值,跟TOP 1效果一样,比较简单的一个函数 先贴测试用代码 DECLARE @TestData TABLE( ID INT IDENTITY(1,1), Department VARCHAR(20), LastName VARCHAR(20), R...
分类:
数据库 时间:
2014-08-25 13:23:34
阅读次数:
355
Implement strStr().Returns a pointer to the first occurrence of needle in haystack, or null if needle is not part of haystack.class Solution {public: ...
分类:
其他好文 时间:
2014-08-25 13:11:34
阅读次数:
153