注意:使用此打印控件需要引入(在我上传的Demo中都有):
install_lodop32.exe
install_lodop64.exe
LodopFuncs.js
jquery-1.10.0.min.js
具体Demo下载地址: http://download.csdn.net/download/l294333475/7697807
<%
String path = reque...
分类:
其他好文 时间:
2014-07-31 13:21:06
阅读次数:
444
1打包源码成jar:
1 新建一个java项目
2 import 想打包的源码文件
3 export 这个文件 : 选择java->jar file . 这里会让你选择输出路径
2 添加源码关联:
1 在 项目右键-> properties 中的 java build path -> libraries 中选择 想要关联的 jar包, 选择里面的 sourc...
分类:
移动开发 时间:
2014-07-31 13:19:26
阅读次数:
231
题目:Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.For example:Given the below binary tree and ....
分类:
编程语言 时间:
2014-07-31 05:22:15
阅读次数:
287
题目:Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given su....
分类:
编程语言 时间:
2014-07-31 05:21:25
阅读次数:
214
题目:Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthes....
分类:
编程语言 时间:
2014-07-31 02:41:15
阅读次数:
229
题目:Given a binary tree, find its minimum depth.The minimum depth is the number of nodes along the shortest path from the root node down to the neares....
分类:
编程语言 时间:
2014-07-31 02:30:25
阅读次数:
264
题意:
构造一幅图 使题中给出的程序按该图执行 最终变量doge大于输入的C跳出
思路:
出题人思维简直神了! 实在是膜拜! 借题解的图:
按照图中所画 可以继续向右延伸
为何这样可以?? 为何边权要这么取??
先回答第二个问题:
取负数是为了可以不断的去更新 例如如果走了上面的-4那条边 那么它右边的所有点就又可以再更新一次 这样使更新达到了指数级...
分类:
其他好文 时间:
2014-07-31 00:08:45
阅读次数:
300
SLF4J: Detected both log4j-over-slf4j.jar AND slf4j-log4j12.jar on the class path, preempting StackOverflowError. SLF4J: See also http://www.slf4j.org...
分类:
编程语言 时间:
2014-07-30 23:40:05
阅读次数:
885
一.安装Maven ubuntu下,配置环境变量etc/profile文件 —— (1)使用gedit ?etc/profile可以编辑,直接打开为只读模式。 (2)配置MAVEN_HOME与PATH ???? #set java environment MAVEN_HOME=/usr/lib/jvm/...
分类:
其他好文 时间:
2014-07-30 21:00:24
阅读次数:
196
#include “book.h”
#include
在刚开始学习都会有这种迷惑,有的程序用
表示从系统目录下开始搜索,然后再搜索PATH环境变量所列出的目录,不搜索当前目录,""是表示从当前目录开始搜索,然后是系统目录和PATH环境变量所列出的目录。
所以,系统头文件一般用...
分类:
编程语言 时间:
2014-07-30 20:54:24
阅读次数:
227