- 博客(216)
- 收藏
- 关注
原创 Spring 中 No serializer found for class问题
HTTP Status 500 - Could not write content: No serializer found for class org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer and no properties discovered to create BeanSerializer (to avoid exc...
2019-10-14 11:24:26 2098
原创 Spring 中的no Session错误
HTTP Status 500 - Could not write content: could not initialize proxy - no Session原因:EntityManager提前关闭了解决方案:在web.xml中配置Spring的过滤器<!--解决no-session的问题--> <filter> <filter-...
2019-10-14 11:16:36 281
原创 JDBC 封装增删改查方法
package cn.itsource;import java.io.IOException;import java.sql.Connection;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.ResultSetMetaData;import java.sql.SQLExcep...
2019-09-06 09:56:52 411
原创 Java 文件上传工具类
package cn.itsource.utils;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.util.UUID;import javax.servlet.http.HttpServlet...
2019-09-06 09:52:05 336
原创 java 实现 JDBCUtil连接mysql8.0.15
1.通过单例实现提供jdbc的连接和流关闭package cn.itsource.util;import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException...
2019-08-14 09:06:36 408
原创 JDBC连接MySQL8.0.15
mysql8.0.15的jre下载地址:https://dev.mysql.com/downloads/file/?id=484819package cn.itsorce.jdbc;import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQ...
2019-08-10 10:45:06 755
原创 Dom4j解析xml之增删改查
xml文件内容:<?xml version="1.0" encoding="UTF-8"?><class> <student> <name>李明</name> <age>25</age> </student> <student> <n...
2019-08-09 22:43:00 143
原创 51Nod 1049 最大子段和【简单dp】
1049 最大子段和基准时间限制:1 秒 空间限制:131072 KB 分值: 0 难度:基础题 收藏 关注N个整数组成的序列a[1],a[2],a[3],…,a[n],求该序列如a[i]+a[i+1]+…+a[j]的连续子段和的最大值。当所给的整数均为负数时和为0。例如:-2,11,-4,13,-5,-2,和最大的子段为:1
2017-06-06 21:36:44 315
原创 51nod 1010 只包含因子2 3 5的数【打表+二分】
1010 只包含因子2 3 5的数基准时间限制:1 秒 空间限制:131072 KB 分值: 10 难度:2级算法题 收藏 关注K的因子中只包含2 3 5。满足条件的前10个数是:2,3,4,5,6,8,9,10,12,15。所有这样的K组成了一个序列S,现在给出一个数n,求S中 >= 给定数的最小的数。例如:n = 13,S
2017-05-02 20:47:20 304
原创 51nod 1007 正整数分组【01背包】
1007 正整数分组基准时间限制:1 秒 空间限制:131072 KB 分值: 10 难度:2级算法题 收藏 关注将一堆正整数分为2组,要求2组的和相差最小。例如:1 2 3 4 5,将1 2 4分为1组,3 5分为1组,两组和相差1,是所有方案中相差最少的。Input第1行:一个数N,N为正整
2017-05-02 20:32:37 282
原创 51nod 1087 1 10 100 1000【二分】
1087 1 10 100 1000题目来源: Ural 1209基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 收藏 关注1,10,100,1000...组成序列1101001000...,求这个序列的第N位是0还是1。Input第1行:一个数T,表示后面用作输入
2017-04-23 17:19:12 415
原创 51nod 1082 与7无关的数【打表】
1082 与7无关的数题目来源: 有道难题基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 收藏 关注一个正整数,如果它能被7整除,或者它的十进制表示法中某个位数上的数字为7,则称其为与7相关的数。求所有小于等于N的与7无关的正整数的平方和。例如:N = 8,
2017-04-17 22:01:15 239
原创 51nod 1080 两个数的平方和【二分】
1080 两个数的平方和基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 收藏 关注给出一个整数N,将N表示为2个整数i j的平方和(i <= j),如果有多种表示,按照i的递增序输出。例如:N = 130,130 = 3^2 + 11^2 = 7^2 + 9^2 (注:3 11同11 3算
2017-04-17 21:23:38 306
原创 51nod 1003 阶乘后面0的数量【数学】
1003 阶乘后面0的数量基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 收藏 关注n的阶乘后面有多少个0?6的阶乘 = 1*2*3*4*5*6 = 720,720后面有1个0。Input一个数N(1 Output输出0的数量Input示例
2017-04-17 20:16:09 323
原创 51nod 1002 数塔取数问题
1002 数塔取数问题基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 收藏 关注一个高度为N的由正整数组成的三角形,从上走到下,求经过的数字和的最大值。每次只能走到下一层相邻的数上,例如从第3层的6向下走,只能走到第4层的2或9上。 5 8 4 3 6 97 2
2017-04-17 19:01:29 225
原创 51nod 1001 数组中和等于K的数对【二分】
1001 数组中和等于K的数对基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 收藏 关注给出一个整数K和一个无序数组A,A的元素为N个互不相同的整数,找出数组A中所有和等于K的数对。例如K = 8,数组A:{-1,6,5,3,4,2,9,0,8},所有和等于8的数对包括(-1,9),(0,8),(2,
2017-04-17 18:49:00 311
原创 51nod 1006 最长公共子序列Lcs【LCS】
1006 最长公共子序列Lcs基准时间限制:1 秒 空间限制:131072 KB 分值: 0 难度:基础题 收藏 关注给出两个字符串A B,求A与B的最长公共子序列(子序列不要求是连续的)。比如两个串为:abcicbaabdkscabab是两个串的子序列,abc也是,abca也是,其中abca是这两个字
2017-04-17 18:02:22 263
原创 51node 1005 大数加法
1005 大数加法基准时间限制:1 秒 空间限制:131072 KB 分值: 0 难度:基础题 收藏 关注给出2个大整数A,B,计算A+B的结果。Input第1行:大数A第2行:大数B(A,B的长度 Output输出A + BInput示例68932147586468711
2017-04-17 17:30:49 365
原创 Codeforces Round #407 (Div. 2)(A,B)
A. Anastasia and pebblestime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputAnastasia loves going for a walk in
2017-03-30 22:07:37 259
原创 组合数学定理收集
唯一分解定理:任意一个大于1的正整数都能表示成若干个质数的乘积,且表示的方法是唯一的。换句话说,一个数能被唯一地分解成质因数的乘积。即 N = p1^a1 * p2^a2 * p3^a3 * ...* pn^an 。 其中p1,p2....pn为素数。代码实现:#include#includeusing namespace std;const int maxn = 1e5
2017-03-28 12:38:53 993
原创 HDU 5969 最大的位或
最大的位或Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1201 Accepted Submission(s): 486Problem DescriptionB君和G君聊天的时候想到了如下的问题。给定
2017-03-16 21:29:10 215
原创 HDUOJ 1466 计算直线的交点数
计算直线的交点数Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 9788 Accepted Submission(s):
2017-03-11 17:57:48 346
原创 NYOJ 1239 引水工程【prim算法】
引水工程时间限制:2000 ms | 内存限制:65535 KB难度:3描述南水北调工程是优化水资源配置、促进区域协调发展的基础性工程,是新中国成立以来投资额最大、涉及面最广的战略性工程,事关中华民族长远发展。“南水北调工程”,旨在缓解中国华北和西北地区水资源短缺的国家战略性工程。就是把中国长江流域丰盈的水资源抽调一部分送到华北和西北地区。我国南涝北旱,南水北调工程通过跨流
2017-03-11 16:47:29 353
原创 hduoj 5443 The Water Problem【线段树】
The Water ProblemTime Limit: 1500/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 1903 Accepted Submission(s): 1508Problem DescriptionIn Land wa
2017-03-09 22:12:01 265
原创 hduoj 2824 The Euler function【欧拉函数 打表】
The Euler functionTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 6449 Accepted Submission(s): 2720Problem DescriptionThe Euler
2017-03-09 21:03:33 211
原创 hduoj 1432 Lining Up【思维】
Lining UpTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 1437 Accepted Submission(s): 433Problem Description``How am I ever goi
2017-03-09 20:08:00 237
原创 POJ 3187 Backward Digit Sums
Backward Digit SumsTime Limit: 1000MS Memory Limit: 65536KTotal Submissions: 6930 Accepted: 4028DescriptionFJ and his cows enjoy playing a mental game. They write
2017-03-02 21:15:00 196
原创 POJ 3050 Hopscotch(DFS)
HopscotchTime Limit: 1000MS Memory Limit: 65536KTotal Submissions: 4012 Accepted: 2663DescriptionThe cows play the child's game of hopscotch in a non-traditional
2017-03-02 19:59:44 208
原创 POJ 3669 Meteor Shower(BFS)
Meteor ShowerTime Limit: 1000MS Memory Limit: 65536KTotal Submissions: 18203 Accepted: 4735DescriptionBessie hears that an extraordinary meteor shower is coming;
2017-03-01 22:20:01 197
原创 POJ 3009 Curling 2.0(DFS)
Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 20039 Accepted: 8185DescriptionOn Planet MM-21, after their Olympic games this year, curling is getting popular. B
2017-03-01 20:09:16 176
原创 【Codeforces Round #402 (Div. 2) 】(A,B,C,D )
A. Pupils Redistributiontime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputIn Berland each high school student
2017-02-27 17:52:04 318
原创 【Codeforces Round #384 (Div.2)】(A,B,C)
A. Vladik and flightstime limit per test 2 secondsmemory limit per test 256 megabytesinput standard inputoutput standard outputVladik is a competitive programme
2016-12-16 18:16:30 313
原创 哈弗曼编码
#include#include#include#includeusing namespace std;typedef struct{ char ch; int weight; int lchild,rchild,parents;}HNode,*HLink;typedef char **Haffmancode;char b[1000];int kinds;in
2016-12-13 19:15:08 291
原创 【Codeforces Round #383 (Div. 2)】 (A,B,C)
A. Arpa’s hard exam and Mehrdad’s naive cheattime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputThere exists a
2016-12-08 21:19:13 541
原创 hdu 1568 Fibonacci(斐波那契数列)
FibonacciTime Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4930 Accepted Submission(s): 2296Problem Description2007年到来了。经过2006年
2016-11-21 21:41:19 324
原创 hdu 1387 Team Queue(队列)
Team QueueTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 2020 Accepted Submission(s): 701Problem DescriptionQueues and Prior
2016-11-20 21:21:07 430
原创 玲珑学院 1050 - array--dp
1050 - arrayTime Limit:3s Memory Limit:64MByteSubmissions:474Solved:144DESCRIPTION2 array is an array, which looks like:1,2,4,8,16,32,64......1,2,4,8,16,32,64......a1=1
2016-11-09 17:51:44 237
原创 hihocoder 1038 01背包
#1038 : 01背包时间限制:20000ms单点时限:1000ms内存限制:256MB描述且说上一周的故事里,小Hi和小Ho费劲心思终于拿到了茫茫多的奖券!而现在,终于到了小Ho领取奖励的时刻了!小Ho现在手上有M张奖券,而奖品区有N件奖品,分别标号为1到N,其中第i件奖品需要need(i)张奖券进行兑换,同时也只能兑换一次,为了
2016-11-05 21:28:11 319
原创 “玲珑杯”ACM比赛 Round #4 G -- See car
G -- See carTime Limit:2s Memory Limit:64MBytDESCRIPTIONYou are the god of cars, standing at (a, b) point.There are some cars at point (xi,yi)(xi,yi). If lots of cars and y
2016-11-05 17:58:03 520
原创 “玲珑杯”ACM比赛 Round #4 A -- chess play
A -- chess playBob has a n×mn×m chessboard, which has two kinds of chess pieces.one is black, and the other is white.As for chessboard, you can do three operations:1 1 x y1 1 x y (mean
2016-11-05 17:52:53 290
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人