1 public class Q1_7{ 2 3 public static void SetZero(int[][] matrix){ 4 5 boolean [] row= new boolean[matrix. length]; 6 7 boolean[] column =new ...
分类:
其他好文 时间:
2014-10-20 21:09:58
阅读次数:
226
The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font ...
分类:
其他好文 时间:
2014-10-20 20:49:08
阅读次数:
280
题意: 给定一个N*N的矩阵,由0,1组成,只允许交换相邻的两行,把矩阵转化为下三角矩阵(对角线上方全是0),最少需要多少次交换?(保证可以转化为下三角矩阵)Large: N<=40解析: 假如每一行的1的个数都是不相同的,即,最终答案中的矩阵是唯一的,这就相当于求对给定数组冒泡排序需要几次交...
分类:
其他好文 时间:
2014-10-20 17:05:12
阅读次数:
226
1.在SQLIte数据库中,Interger返回的数据类型是Int64位的。如果想转换为C#的int类型,必须先转换为Int64,再转换为int类型。如: int id = (int)(Int64)dt.rows[0]["ID"]; int 类型转换成c#int可直接转换,如: int is...
分类:
数据库 时间:
2014-10-20 00:39:01
阅读次数:
323
QT5 连接 QMYSQL 数据库时出现错误:QMYSQL driver not loaded。解决方法如图:(图中使用指令:ldd libqsqlmysql.so)从结果图显示中:libmysqlclient.so.18 没有找到。从 mysql 安装目录中 lib 目录中找到 libmysqlc...
分类:
数据库 时间:
2014-10-17 18:36:13
阅读次数:
214
I hava a table gtlions.cannottruncatetable, ZERO rows in this table, i can DELETE from the table, but can not TRUNCATE, hang the statement sql.
Detail info below:
###################On the session...
分类:
其他好文 时间:
2014-10-16 16:29:12
阅读次数:
282
后台 string json = "{\"pageCount\":" + PageCount.ToString() + ",\"rows\":" + str1+"}"; // JObject jo = new JObject(); ...
分类:
Web程序 时间:
2014-10-16 16:25:22
阅读次数:
203
1, write down all the permutations of the string of character ;
2, sort these rows according to the first character of each row;
3, the last coloumn is the result string.
BWT reverse:
1, write...
分类:
其他好文 时间:
2014-10-15 23:26:11
阅读次数:
226
在Oracle中有两种临时表,一种是基于session,就是当出现commit之后,数据就会被清空;一种是基于session,当session断开后,数据会被清空。
--基于事务的临时表
create global temporary table test
(
ID number
)
on commit delete rows;
--基于session的临时表
cr...
分类:
数据库 时间:
2014-10-15 23:08:11
阅读次数:
457
mysql获取group by内部可以获取到某字段的记录分组统计总数,而无法统计出分组的记录数。mysql的SQL_CALC_FOUND_ROWS 使用 获取查询的行数 在很多分页的程序中都这样写: 代码如下 复制代码 SELECT COUNT(*) from `table` WHERE ........
分类:
数据库 时间:
2014-10-15 22:39:01
阅读次数:
273