- 博客(8)
- 收藏
- 关注
原创 JDBC驱动问题
1、在微软官网下载JDBC驱动 2、按提示安装 3、配置classpath 4、将sqljdbc42.jar包导入到eclipse中weib工程下WEB-INF下lib目录中 5、在jsp文件中加载驱动,创建连接 语句如下: //1.加载驱动 Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); //
2017-04-11 01:16:22 264
原创 两个算法--Day7
/* * 1.Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 Note: The input is assumed to be a 32-bit signed integer. Your f
2017-04-01 14:38:13 230
原创 两个算法--Day6
/* * 最大公约数、最小公倍数 */ package algorithm; public class Day6 { public static void main(String[] args) { // TODO Auto-generated method stub Solution6 sl=new Solution6(); sl.gongYueShu(
2017-03-24 17:08:28 274
原创 两个算法--Day5
/* * 1.Given an array of integers, every element appears twice except for one. Find that single one. * (Note:Your algorithm should have a linear runtime complexity. * Could you implement it
2017-03-24 17:06:51 258
原创 两个算法--Day4
/* * 1.请实现一个函数,把字符串中的每个空格替换成“%20”。 * 2.一个二维数组,每一行从左到右递增,每一列从上到下递增. * 输入一个二维数组和一个整数,判断数组中是否含有整数。 */ package algorithm; public class Day4 { public static void main(String[] args) {
2017-03-20 14:44:53 202
原创 两个算法--Day3
/* * 1.平衡点就是指数组中某一个节点的前面的所有元素的和等于后面节点所有元素的和。 * 2.判断一个数是否为3的n次幂。 */ public class Day3 { public static void main(String[] args) { // TODO Auto-generated method stub //Pinghengdian phd
2017-03-19 19:34:35 206
原创 两个算法--Day2
package algorithm; /* * 1.输入一个数,判断该数是否为素数?如果是输出yes,否则输出no * 2.现在有一个整数数组,已知一个数出现的次数超过了一半,请用O(n)的复杂度的算法找出这个数。 */ import java.io.*; import java.util.*; public class Day2 { public static v
2017-03-19 02:03:28 245
原创 两个算法--Day1
package algorithm; /* * 1.水仙花数是指一个 n 位数 ( n≥3 ),它的每个位上的数字的 n 次幂之和等于它本身。(例如:1^3 + 5^3+ 3^3 = 153) * 2.猴子吃枣问题。猴子摘了一堆枣。第一天吃了一半,还嫌不过瘾,又吃一个;第二天又吃了剩下的一半零一个; * 以后每天如此。到第十天,猴子一看只剩下一个了。问第一天有多少个枣?
2017-03-19 02:01:15 329
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人