- 浏览: 10385 次
- 性别:
- 来自: 北京
最新评论
文章列表
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF- ...
01背包的 动态规划和 穷举法
首先是动态规划
public static void main(String[] args) {
List<Product> products = new ArrayList<Product>();
products.add(new Product(10, 3));
products.add(new Product(3, 4));
products.add(new Product(4, 5));
products.add(new Product(5, 6));
dynamicPack01(produc ...
Subclipse在eclipse里面的忽略方法,在Window->Preferences->Team->Ignored Resources会忽略所有版本控制工具
$.param(params, true) 利用这个函数来处理带有数组的参数就可以正确接收了后台, - - 或者在添加 traditional:true 这个参数
Springmvc处理@responsebody 使用的是默认编码iso-8859-1 所以改变编码 使用如下方式
<mvc:annotation-driven>
<mvc:message-converters>
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<constructor-arg name="defaultCharset" value="UFT-8 ...
堆排序
原理 :对的父节点总是大于或者小于子节点,所以根节点一定是最大值或者最小值,
利用这个性质,首先构建初始堆,然后将堆的顶点与末尾的值交换, 然后再次调整堆(排除末尾的值),反复此过程
public static void main(String[] args) {
int[] a = {5,3,6,2,1,9,4,8,7};
heap(a);
}
public static void heap(int[] array){
buildMaxHeap(array);
for(int i = array.length - 1 ; ...
摘自百度百科的代码- -
public static void main(String args[]){
int[] a = {5,3,6,2,1,9,4,8,7};
System.out.println(Arrays.toString(merge(a)));
}
public static int[] merge(int[] array){
if(array.length == 1){
return array;
}else{
int center = array.length / 2;
int[] ar ...
tomcat的编码
<Connector中添加两个设置useBodyEncodingForURI="true" //设置POST和GET使用相同编码
URIEncoding="UTF-8" //对URI使用utf-8编码处理
?
<Connector useBodyEncodingForURI="true" URIEncoding="UTF-8"connectionTimeout="20000" maxThreads="150" port="8888&q ...
[color=blue][/color]
CREATE PROCEDURE proc_delete_department(IN rootid int)
begin
declare _level int DEFAULT 0;
DROP TABLE IF EXISTS temptab;
create table temptab(id int, level int);
insert into temptab(id, level) values(rootid, _level);
...
转 http://www.cnblogs.com/baochuan/archive/2012/04/30/2473771.html
//模仿JQuery的方式
(function(){
var yQuery = (function(){
var yQuery = function(){
return yQuery.fn.init();
};
yQuery.fn = yQuery.prototypy = {
init : function(){
return this;
}
}
yQuery.extend = yQue ...
package com.test;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.lang.reflect.Method;
import com.sun.tools.javac.Main;//tools.jar jdk下的lib
public class MyTest {
/**
* @param args
* @throws IOException
* ...
今天看了下 排序 写的不好 主要写插入和希尔排序 ,我的理解插入排序就是希尔排序增量为1的特殊希尔排序,希尔排序是为了解决插入排序中的数组移动次数太多
import java.util.Arrays;
public class StraightSort {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int a[] = {2,5,24,3,1,15};
//System.out.p ...