码迷,mamicode.com
首页 >  
搜索关键字:jin ge jin qu hao    ( 3637个结果
LightOJ 1380 – Teleport 【最小树形图】
题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1380最小树形图也就是有向图的最小生成树。普通的prim无法求解。#include #include #include #include #include #include <qu...
分类:其他好文   时间:2015-04-14 21:42:14    阅读次数:179
EL 运算符——小记
EL运算符算术运算符+、-、*、/(或div)和%(或mod)关系运算符==(或eq)、!=(或ne)、<(或lt)、>(或gt)、<=(或le)和>=(或ge)逻辑运算符&&(或and)、||(或or)和!(或not)验证运算符empty
分类:其他好文   时间:2015-04-13 21:10:36    阅读次数:119
myBatis使用全注解小结
将最近工作中,使用到的myBatis注解方式的数据库操作总结一下1.User modelPublic class User{ Private int id; Private int gid; Private int age; Private String sex; Ge...
分类:其他好文   时间:2015-04-13 18:47:14    阅读次数:283
C语言实现的水仙花数
#include void main(){ int ge,shi,bai; for (int i =100; i < 1000; i++) { bai=i/100; shi=i%100/10; ge=i%100%10; if(bai*bai*bai+shi*shi*shi+ge*ge*ge==...
分类:编程语言   时间:2015-04-13 18:20:17    阅读次数:130
Spring MVC Controller中解析GET方式的中文参数会乱码的问题(tomcat如何解码)
Spring MVC Controller中解析GET方式的中文参数会乱码的问题问题描述在工作上使用突然出现从get获取中文参数乱码(新装机器,tomcat重新下载和配置),查了半天终于找到解决办法。为何会乱码Spring MVC 是基于Servlet,在Http请求到达Servlet解析之前,GE...
分类:编程语言   时间:2015-04-13 16:34:48    阅读次数:187
linux 监控系统缓存和cpu
a=`free |head -n 2 |tail -n 1 |awk '{print $7}'`if [ $a -ge 900000 ];then sync && echo 1 >/proc/sys/vm/drop_cacheselse echo "`date +%x%T`cache: > /ho....
分类:系统相关   时间:2015-04-12 06:30:34    阅读次数:200
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!