//http://192.168.88.8/sns 服务器的主地址 //my/user_list.php 后续资源地址 //? 后代表参数 //page 数据的页码数 //number 代表获得的数据条数 //参数与参数间用 "...
分类:
其他好文 时间:
2014-06-20 23:29:26
阅读次数:
229
ListView在Android中有着很重要的作用。Android开发中ListView是比较常用的组件,它以列表的形式展示具体内容,并且能够根据数据的长度自适应显示。背景 建了个Person类,里面有Name,Number,id,三个属性。private String name; priva...
分类:
移动开发 时间:
2014-06-20 21:54:18
阅读次数:
301
Oracle没有自增字段这样的功能,但是通过触发器(trigger)和序列(sequence)可以实现。先建一个测试表了:create table userlogin( id number(6) not null, name varchar2(30) not null primary key)tab...
分类:
数据库 时间:
2014-06-20 18:51:30
阅读次数:
277
题目描述:把只包含因子2、3和5的数称作丑数(Ugly Number)。例如6、8都是丑数,但14不是,因为它包含因子7。习惯上我们把1当做是第一个丑数。求按从小到大的顺序的第N个丑数。输入:输入包括一个整数N(1#define MAXSIZE 1500void mkUglyNumber();int...
分类:
其他好文 时间:
2014-06-20 16:56:31
阅读次数:
197
按表中的字段 UpdateTime 按每天进行编号,每天的编号都从1开始编号,并附带表的主键 cid,把数据存入临时表中WITH temp AS (SELECT cid,updatetime, ROW_NUMBER() OVER (PARTITION BY CONVERT(varchar(10),....
分类:
数据库 时间:
2014-06-20 16:37:46
阅读次数:
221
能够在ios桌面的程序icon右上角显示数字(badge number)的方法在ViewController中的viewDidLoad方法中添加如下代码即可 - (void)viewDidLoad { [super viewDidLoad]; ...
分类:
其他好文 时间:
2014-06-20 16:05:23
阅读次数:
163
Given a binary tree containing digits from0-9only, each root-to-leaf path could represent a number.An example is the root-to-leaf path1->2->3which rep...
分类:
其他好文 时间:
2014-06-20 15:30:19
阅读次数:
227
网上看见了好多例子都基本上是一样的,没有过多的解释,对于一个初学MySQL来说有点难,我把部分转摘过来如下 原文:http://www.cnblogs.com/buro79xxd/archive/2012/08/29/2662489.html要求目标:1.确定需求: 根据部门来分组,显示各员工在部....
分类:
数据库 时间:
2014-06-20 14:59:13
阅读次数:
235
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
其他好文 时间:
2014-06-20 14:43:53
阅读次数:
137
A(Phone Number)1.暴力 #include #include #include #include #include using namespace std;int cmp(const void *a,const void *b){ return strcmp((char *)a...
分类:
其他好文 时间:
2014-06-20 14:41:04
阅读次数:
139