本片文章是介绍如何用ajax的方式将easyui中的datagrid数据导出到excel中。
声明:该代码是在参考前人的代码写出来的,并非我原创。
新增部分:
1. 对于列是枚举列的可以设置枚举值,导出时会自动替换列中的枚举值,详细见用例代码。
2. 新增导出时不导出首列或末列指定个数的列,详细接用例代码。
下面是插件源码:
/**
Jquery easyui datagrid js导...
分类:
其他好文 时间:
2015-01-27 22:02:19
阅读次数:
566
Given a binary tree, find the maximum path sum.
The path may start and end at any node in the tree.
求树的一点到另一点的最大路径,利用递归的方法,ans 在 左子树,右子树,root+左+右的最大中产生。
/**
* Definition for binary tree
* struct ...
分类:
其他好文 时间:
2015-01-27 22:01:36
阅读次数:
112
从一个点开始,如果始终只往右边和下边走,则如果能到达右下角距离必定是最小的,
且无论走那条路线距离都是一样的。
代码如下:
#include
#include
#include
using namespace std;
char str[100];
int G[1000][1000];
int dp[1000][1000];
int n,m;
void input()
{...
分类:
其他好文 时间:
2015-01-27 22:01:08
阅读次数:
143
最近做的项目中,经常会遇到用视图来操作数据库的,但是页面需要的则是某个实体对象,在controller层查出list 还要把将view对象转化成entity对象。需要写一大堆的get和set方法,而且如果实体增删字段的话,还需要把转化代码再修改一下,让人头疼。
当我需要操作一个实体对象完成两件不同的事情,这2个方法中会修改实体对象中的属性,第一个方法调用后,再调用第二个方法时,会受...
分类:
其他好文 时间:
2015-01-27 21:59:19
阅读次数:
168
A Round Peg in a Ground Hole
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 5399
Accepted: 1712
Description
The DIY Furniture company specializes in assembl...
分类:
其他好文 时间:
2015-01-27 22:01:36
阅读次数:
175
有时候我们要比较两个方法的运行效率,那么就可以利用tic、toc这两个函数去估算运行时间。使用方法如下:tic
for k=1:100
s=sum(k);
end
toc 运行结果:
Elapsed time is 0.000003 seconds.
是不是很容易呢?用tic,toc把程序围起来就可以了!下面对比一下MATLAB中求逆矩阵两种方法的效率:
tic;A=...
分类:
其他好文 时间:
2015-01-27 22:00:54
阅读次数:
323
从这一节主要学习 控制语句、循环语句
注释、shell多行注释
shell单行注释很简单,只需在每行行首增加#,但是他其实是没有提供专门的多行注释的方法的,所以我们采用投巧的方式来多行注释,用EOF分界符来多行注释,如下:
1 #! /bin/sh
2
3 file="/Desktop/file.test"
4
5 <<EOF
6 if [ -r $file ]
...
分类:
系统相关 时间:
2015-01-27 22:01:05
阅读次数:
223
贪心算法解决活动选择问题...
分类:
编程语言 时间:
2015-01-27 21:58:36
阅读次数:
330
Eclipse设置内存大小
1、修改Eclipse的配置文件
(1)打开Eclipse目录
(2)以EditPlus打开eclipse.ini,修改“-Xms40m -Xmx512m”成“-Xms512m -Xmx512m”
2、修改JDK内存
(1)双击打开eclipse,依次操作“Window--->Preferences--->Java--...
分类:
系统相关 时间:
2015-01-27 21:59:43
阅读次数:
242
1:双引号转义
print "he\"llo"只需要在双引号前面加一个反斜杠。
输出结果:he"llo
2:字符串的拼接
(1)可以用+号
print "hello" +" "+ "wolrd"
(2)可以用逗号
print "hello","world"
(3)可以用*数字
print "hello"*3
输出结果:
hello wolrd
hello world...
分类:
编程语言 时间:
2015-01-27 21:58:04
阅读次数:
175
eclipse中的System.getProperty("user.dir")
1、在Java Application中,上述中的获取的是Java项目的路径
(1)运行源码
/**
*
*/
package com.you.test;
/**
* @author YouHaiDong
*
*/
public class Property
{
/**
* @par...
分类:
系统相关 时间:
2015-01-27 21:59:12
阅读次数:
231
//
// main.m
// OC05-task-03
//
// Created by Xin the Great on 15-1-25.
// Copyright (c) 2015年 Xin the Great. All rights reserved.
//
#import
int main(int argc, const char * argv[]) {
@auto...
分类:
其他好文 时间:
2015-01-27 21:58:07
阅读次数:
157
背景:1——wa:最后一组输出不要空行!。
思路:我的思路,就是模拟整个表,把表实行操作之后的形态表示出来,把原表中的数据再在已经模拟的表中去查询。书上的思路是,先把一系列的操作保存在一个结构体数组中,每一个结构体数组元素对应一个操作,最后对于每一个坐标的系统执行这一套操作,就可以得出变化好的坐标!这种方法可能只要知道操作结构体的思想,写起来更容易.
学习:1.写完之后查一遍代码,比去单步调试...
分类:
其他好文 时间:
2015-01-27 21:59:25
阅读次数:
365
//
// main.m
// OC05-task-04
//
// Created by Xin the Great on 15-1-26.
// Copyright (c) 2015年 Xin the Great . All rights reserved.
//
#import
int main(int argc, const char * argv[]) {
@aut...
分类:
其他好文 时间:
2015-01-27 21:57:46
阅读次数:
186
//
// main.m
// OC05-task-05
//
// Created by Xin the Great on 15-1-26.
// Copyright (c) 2015年 Xin the Great. All rights reserved.
//
#import
int main(int argc, const char * argv[]) {
@auto...
分类:
其他好文 时间:
2015-01-27 21:56:46
阅读次数:
145
//
// main.m
// OC05-task-06
//
// Created by Xin the Great on 15-1-26.
// Copyright (c) 2015年 Xin the Great. All rights reserved.
//
#import
int main(int argc, const char * argv[]) {
@auto...
分类:
其他好文 时间:
2015-01-27 21:56:17
阅读次数:
163
Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST.
Calling next() will return the next smallest number in the BST.
Note: next() and...
分类:
其他好文 时间:
2015-01-27 21:58:04
阅读次数:
172