<s:selectname="sel_%{#record.onuid}"id="sel_%{#record.onuid}"value="%{#record.confirmed}"list="#{‘false‘:‘未确认‘,‘true‘:‘已确认‘}"style=‘height:22px;width:70px;border:1pxsolid#BCD0DE;BORDER-RIGHT:#BCD0DE1pxsolid;‘onchange=‘updateonu(%{#record.onuid})‘/&..
分类:
其他好文 时间:
2015-01-22 15:49:43
阅读次数:
192
if的用法:mysql> select if(10>9,10,9) as bigger from dual;+--------+| bigger |+--------+| 10 |+--------+left()和right()的用法:mysql> select left('abcdeft'...
分类:
数据库 时间:
2015-01-20 17:52:47
阅读次数:
213
mysql导入source时报错mysqlERROR1153(08S01)max_allowed_packet不够大最近需要导入mysql的备份文件,使用source命令导入时,却报以下错误:ERROR1153(08S01):Gotapacketbiggerthan‘max_allowed_packet‘bytes错误提示信息也基本上告诉我们错误的原因了。max-allowed_packet限制..
分类:
数据库 时间:
2014-12-30 17:20:11
阅读次数:
174
现在手机真是各种功能百花齐放,苹果的Bigger,小米的便宜,华为的美颜,OPPO的拍照、VIVO的音乐…,不过老婆说:“ 再好的手机有啥用,还不是伤眼又辐射,让我美丽的双眼失去了光华,皮肤也没以前好了,你也不像初恋时那么爱我了,而且还会伤害我肚子里的宝宝呢……”
我去,没想到一个手机,引发老婆这么多感慨,尤其她现在怀孕了,全家人从上到下都围绕她转,只要她高兴,我是啥都乐...
分类:
其他好文 时间:
2014-12-26 09:41:18
阅读次数:
182
In data structure Hash, hash function is used to convert a string(or any other type) into an integer smaller than hash size and bigger or equal to zer...
分类:
其他好文 时间:
2014-12-25 06:33:10
阅读次数:
376
http://acm.hdu.edu.cn/showproblem.php?pid=5147
Problem Description
Long long ago, there is a sequence A with length n. All numbers in this sequence is no smaller than 1 and no bigger than n, a...
分类:
编程语言 时间:
2014-12-21 18:01:53
阅读次数:
287
Sequence II
Problem Description
Long long ago, there is a sequence A with length n. All numbers in this sequence is no smaller than 1 and no bigger than n, and all numbers are different in...
分类:
编程语言 时间:
2014-12-21 15:19:07
阅读次数:
302
题意:
有人说大象越重就越聪明,为了推翻的它的结论,给你一组大象的体重和智商的数组,你需要找出一组最长的随着体重增加智商下降的序列。
思路:
按照体重排一下序,然后就变成求一个智商最长下降子序列的问题了。
代码如下:
#include
#include
#include
#include
using namespace std;
typedef struct
{...
分类:
其他好文 时间:
2014-12-14 09:30:15
阅读次数:
186
题目:有人认为大象的体重和智力有一定的正相关性,现在给你一些数据,找到一个最长的反例序列。
分析:dp,LIS,醉倒上升子序列。对W排序求出S的最大下降子序列即可,存储路径搜索输出。
说明:先读到EOF再处理。
#include
#include
#include
#include
#include
#include
using namespace std;
typedef...
分类:
其他好文 时间:
2014-12-13 08:31:02
阅读次数:
246
题目链接:点击打开链接
DAG(有向无环图)上的最长路+打印路径
建图很简单,对于两点 a b, 能够由a到b的条件是w[a]s[b] 注意是有向图。
设dp[i] 为以i为起点的最长路的长度,dp[i]= max(dp[i],dp[j]+1) 枚举j (j是和i相连的点)
#include
#include
#include
#include
#include
#inclu...
分类:
其他好文 时间:
2014-12-09 19:38:05
阅读次数:
171