码迷,mamicode.com
首页 > 2015年04月07日 > 全部分享
POJ 2069 Super Star(模拟退火,最小球覆盖)
解题思路: 给出空间内的n个点,找出覆盖这n个点的最小球的半径。用模拟退火来做。 #include #include #include #include #include #include #include #include #include #include #define LL long long using namespace std; const int MAXN ...
分类:其他好文   时间:2015-04-07 17:46:19    阅读次数:132
通过.css修改.jsp
项目遇到jsp页面显示的效果需要修改,通过.css修改.jsp 需求是把grid panel往下移,这样美观一点。修改成下面这样: 通过审查元素确定这部分是。新建.css文件。 @CHARSET "UTF-8"; #topic-grid { padding-top:36px; } 在jsp文件中加上这句话,配置css文件路径。 这样css文件中的代码就会起效果了...
分类:Web程序   时间:2015-04-07 17:48:48    阅读次数:126
CSU1563:Lexicography(数学)
Description An anagram of a string is any string that can be formed using the same letters as the original. (We consider the original string an anagram of itself as well.) For example, the string...
分类:其他好文   时间:2015-04-07 17:45:41    阅读次数:114
使用xig工具从schema生成schema实例
1,下载xig工具,xml-xig-0.1.1.jar可以到一下链接下载    2.编写schema文件,如下:    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://my.soa.com" targetNamespace="http://my.soa.com" elementForm...
分类:其他好文   时间:2015-04-07 17:45:20    阅读次数:154
【Spring】Spring之核心容器bean
摘要:Spring的核心容器实现了Ioc,其目 的是提供一种无侵入式的框架。在本文中,首先讲解了Spring的基础bean的相关知识,然后介绍了Spring是如何对bean进行管理的。...
分类:编程语言   时间:2015-04-07 17:45:48    阅读次数:181
编译cling核心库的方法
1,安装jdk, 去甲骨文网站下载jdk1.7.0_71.tar.gz 展开到/opt目录下 2,安装git-core 3,安装maven 下载链接:http://maven.apache.org/download.cgi 下载apache-maven-3.3.1-bin.tar.gz 展开到/usr/local下 4,配置路径 修改/etc/profile文件(sudo ged...
分类:其他好文   时间:2015-04-07 17:48:06    阅读次数:203
lua正则表达式
lua中的正则表达式,规则如图: 常用示例,代码如下: -- 去掉首尾所有空格 function trim(s) return (string.gsub(s, "^%s*(.-)%s*$", "%1")) end local s = " space " local txt = trim(s) print(string.len(s), string.len(txt))...
分类:其他好文   时间:2015-04-07 17:44:59    阅读次数:422
手机卫士-09
手机卫士-09 课1 回顾高级工具的短信备份 ToolsActivity.java(前台界面) smsBackupparser.java(后台逻辑) 备份短信是一个很耗时的操作,可能需要很长的时间 修改activity_tool.xml的进度条progressBar <!-- <ProgressBar android:id="@+id/pb" style="?andr...
分类:移动开发   时间:2015-04-07 17:47:05    阅读次数:245
ROS 学习系列 -- 使用Rviz观察智能车的运动轨迹 无陀螺仪计算角度转动
视频录像 根据两边轮子转动的速率不同,推算出转动的角度。包括原地旋转。 计算的原理和代码可以查看文章 ROS 教程之 navigation : 用 move_base 控制自己的机器人(2)...
分类:其他好文   时间:2015-04-07 17:45:05    阅读次数:163
HDU 2059 龟兔赛跑
模拟加简单的动态规划。...
分类:其他好文   时间:2015-04-07 17:45:55    阅读次数:112
多线程之NSOperationQueue(线程队列)
NSOperationQueue的使用...
分类:编程语言   时间:2015-04-07 17:44:55    阅读次数:128
HDU4407Sum ( 容斥原理)
HDU4407Sum ( 容斥原理)...
分类:其他好文   时间:2015-04-07 17:45:23    阅读次数:98
php开发之文件指针,文件锁定
(1) rewind() 函数 该函数将文件handle的指针设为文件流的开头,语法如下: bool rewind(resource handle) (2)fseek() 函数 fseek()函数实现文件指针的定位,语法如下: int fseek(resource handle,int offset[,int whence]) handle 参数为要打开的文件 offset为指针位...
分类:Web程序   时间:2015-04-07 17:46:13    阅读次数:163
CSU1565: Word Cloud
Description A word cloud (or tag cloud) is a visual representation of textual data based on a weighted metric. In the above cloud (which is based on this year's list of Mid-Central teams), the fo...
分类:其他好文   时间:2015-04-07 17:45:51    阅读次数:163
input disabled不能提交表单
今天,在开发过程中发现一个问题,在提交form表单时,有一个input一直不能被提交,后台一直报错!究其原因,是因为该input上设置了disabled属性。然而,有时我们又不得不设置某些元素为不可操作的,建议使用readonly替之。 一、readonly & disabled区别 readonly和disabled是用在表单中的两个属性,它们都能够做到使用户不能够更改表单域中的内容。 ...
分类:其他好文   时间:2015-04-07 17:45:12    阅读次数:103
soj 2222 01背包变形
背景:wa~Tl~看来背包还是很欠缺啊~ 思路1(1500ms):变形的01背包。把题目改为:选择一组HP和大于等于所需血量且这组物品的分数之和最小,即可。这里把HP看做cost,score看做weight。但是这个题有个特点是最后选择HP必须大于等于k,容易想到,最多我们会有k+10000(10000为单个物品的最大HP值)的HP值,所以我们有这样的转移方程: for i 0....n  ...
分类:其他好文   时间:2015-04-07 17:45:02    阅读次数:121
Android各类事件大全
onFinishInflate() 当View中所有的子控件 均被映射成xml后触发 onMeasure(int, int) 确定所有子元素的大小 onLayout(boolean, int, int, int, int) 当View分配所有的子元素的大小和位置时触发 onSizeChanged(int, int, int, int) 当view的大小发生变化时触发 onD...
分类:移动开发   时间:2015-04-07 17:45:58    阅读次数:160
2256条   上一页 1 ... 46 47 48 49 50 51 52 ... 133 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!