上一页 1 ··· 83 84 85 86 87 88 89 90 91 ··· 146 下一页
摘要: 题目描写叙述: Given a binary tree, return the postorder traversal of its nodes' values. For example: Given binary tree {1,#,2,3}, 1 \ 2 / 3 return [3,2,1]. 阅读全文
posted @ 2017-06-07 16:09 zsychanpin 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 纵观近些年IT与空间技术的发展,云计算、大数据、实时信息、LBS、无人机、倾斜摄影等新技术层出不穷;互联网基础设施建设成绩瞩目,宽带成为国家战略性公共基础设施。 GIS(地理信息系统)作为空间信息分析和处理的重要工具。其应用需求也在发生着巨大的变化。在线的内容、便捷的协作、随时随地的多设备訪问、大众 阅读全文
posted @ 2017-06-07 14:33 zsychanpin 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 据说期末考试要考到Vector 这个类,出于复习须要在这里就要好好整理下这个类了。 一、基本概念 Vector 是可实现自己主动增长的对象数组。 java.util.vector提供了向量类(vector)以实现类似动态数组的功能。在Java语言中没有指针的概念,但假设正确灵活地使用指针又确实能够大 阅读全文
posted @ 2017-06-07 13:11 zsychanpin 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 1、什么是数据库连接池 数据库连接池负责分配、管理和释放数据库连接,它同意应用程序反复使用一个现有的数据库连接,而再不是又一次建立一个。释放空暇时间超过最大空暇时间的数据库连接来避免由于没有释放数据库连接而引起的数据库连接遗漏。 数据库连接池在初始化时将创建一定数量的数据库连接放到连接池中,这些数据 阅读全文
posted @ 2017-06-07 11:50 zsychanpin 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 题意: 输入一串仅仅含有+和*号的表达式,能够通过加入括号来改变表达式的值,求表达式的最大最小值。 思路: 表达式中的数都是不大于20的正整数,由a*b+c<=a*(b+c)能够知道。先算乘法后算加法时表达式的值最小, 先算加法后算乘法时表达式的值最大。 由这个思路,我先把表达式中的运算符和数字都提 阅读全文
posted @ 2017-06-07 10:09 zsychanpin 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 我的环境: Virtualbox 4.3.10 r93012 操作系统:win7 问题:Virtualbox在使用拷贝的虚拟盘时会提示uuid冲突: Because a hard disk with uuid ‘’ already exists. 依照网上的说法,执行VBoxManage改动uuid 阅读全文
posted @ 2017-06-07 08:38 zsychanpin 阅读(1304) 评论(0) 推荐(0) 编辑
摘要: delete from zqzrdp where tel in (select min(dpxx_id) from zqzrdp group by tel having count(tel)>1); 运行,报错 异常意为:你不能指定目标表的更新在FROM子句。傻了。MySQL 这样写,不行,让人郁闷 阅读全文
posted @ 2017-06-07 08:07 zsychanpin 阅读(311) 评论(0) 推荐(0) 编辑
摘要: 一,c3p0执行一段时间后报错例如以下 W 07-26_00:58:27 ThreadPoolAsynchronousRunner.java 608 com.mchange.v2.async.ThreadPoolAsynchronousRunner$DeadlockDetector@70929ab6 阅读全文
posted @ 2017-06-06 21:36 zsychanpin 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 准备工作: 1.数据库驱动程序 2.generatorConfig驱动,(下载地址:https://github.com/mybatis/generator/releases) 3.generatorConfig.xml配置文件。例如以下(注意:在执行的时候此文件里不能有凝视。): <?xml ve 阅读全文
posted @ 2017-06-06 20:54 zsychanpin 阅读(108) 评论(0) 推荐(0) 编辑
摘要: The Embarrassed Cryptographer Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 11978 Accepted: 3194 Description The young and very promising 阅读全文
posted @ 2017-06-06 19:32 zsychanpin 阅读(302) 评论(0) 推荐(0) 编辑
上一页 1 ··· 83 84 85 86 87 88 89 90 91 ··· 146 下一页