码迷,mamicode.com
首页 > 其他好文
应用程序不能完全结束的原因探秘及调试方法
把程序部署到Tomcat或WebLogic后,经常碰到结束程序时不能完全结束,某些线程还活着,必须手动强制关闭整个服务器才可以结束.但如果我们的应用服务器上部署了很多个重要应用,其中一个应用的启停应该不能影响其他应用才对.究竟是什么原因导致了我们的服务器不能关闭呢?估计很多人没有深入究过这个问题吧. 先看看下面的例子吧:...
分类:其他好文   时间:2014-08-09 21:37:49    阅读次数:300
i hate it 线段树
c++ 线段树 区间最值...
分类:其他好文   时间:2014-08-09 21:37:39    阅读次数:219
UVA 489-- Hangman Judge--暴力串处理
Hangman Judge  In ``Hangman Judge,'' you are to write a program that judges a series of Hangman games. For each game, the answer to the puzzle is given as well as the guesses. Rules are t...
分类:其他好文   时间:2014-08-09 21:37:19    阅读次数:414
UVA - 10032 Tug of War (二进制标记+01背包)
Description Problem F: Tug of War A tug of war is to be arranged at the local office picnic. For the tug of war, the picnickers must be divided into two teams. Each person must be on one tea...
分类:其他好文   时间:2014-08-09 21:37:09    阅读次数:367
Native2asciiUtil 文本文件转UNICODE编码文件(支持UTF-8,Unicode,UTF-16BE,ANSI|ASCII,GBK)
将文本文件转换为UNICODE编码 */ public class Native2asciiUtil { /** * @description 将文本文件转换成UNICODE编码支持UTF-8,Unicode,UTF-16BE,ANSI|ASCII,GBK...
分类:其他好文   时间:2014-08-09 21:36:29    阅读次数:234
UVA 401-- Palindromes--串处理
Palindromes  A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a palindrome because it is the same when t...
分类:其他好文   时间:2014-08-09 21:36:09    阅读次数:344
Cannot instantiate the type List<Integer>
在使用java.util.List; 的时候,把语句写成了:List arr = new List();导致错误:Cannot instantiate the type List正确写法是:List arr = new ArrayList();...
分类:其他好文   时间:2014-08-09 21:35:49    阅读次数:304
POJ2352_Stars(线段树/单点更新)
解题报告 题意: 求在坐标系中...
分类:其他好文   时间:2014-08-09 21:35:39    阅读次数:293
UVA 465-- Overflow (atof 函数)
Overflow  Write a program that reads an expression consisting of two non-negative integer and an operator. Determine if either integer or the result of the expression is too large to be rep...
分类:其他好文   时间:2014-08-09 21:35:29    阅读次数:321
Codeforces Round #260 (Div. 1) A. Boredom (DP)
Codeforces Round #260 (Div. 1) A. Boredom (DP)...
分类:其他好文   时间:2014-08-09 21:35:09    阅读次数:379
hdu2852--KiKi's K-Number(线段树,求第k个数)
KiKi's K-Number Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2546    Accepted Submission(s): 1174 Problem Description For the k-th...
分类:其他好文   时间:2014-08-09 21:34:59    阅读次数:264
HDU 1087 Super Jumping! Jumping! Jumping!(DP)
题意 求n个数字的和最大的递增子序列 基础的dp题目 令d[i]表示以第i个数字结尾的和最大的递增子序列 有d[i]=max(d[i],d[j]+a[i]) j为1到a之间的数 且a[i]>a[j]...
分类:其他好文   时间:2014-08-09 21:34:49    阅读次数:202
poj 1004 Dividing
题目大意是,从输入六个数 ,第i个数代表价值为i的有几个,平均分给两个人 ,明摆着的背包问题,本来以为把他转化为01背包,但是TLe,后来发现是12万的平方还多,所以妥妥的TLE,后来发现这是一个完全背包问题,然后即纠结了 ,没学过啊 ,最后发现思想好i是蛮简单的,水水的A掉了,最后注意一下初始化问题和输入问题后就好了 #include #include int a[10]; int dp[...
分类:其他好文   时间:2014-08-09 21:34:39    阅读次数:198
CodeForces 451D Count Good Substrings
题意: 一个只包含a和b的字符串  问  它有几个长度为偶数和长度为奇数的“压缩回文串”  压缩的概念是  相邻的相同字符压缩成一个字符 思路: 串经过压缩一定满足如下形式 ……ababab……  那么这样只要两端的字符相同则中间一定是回文的  因此对于一个a它作为左端点形成的回文串个数就等于它右边的a的个数  那么长度是奇数还是偶数呢  可以这么判断  如果a在奇数位置上和它匹配的a也在奇...
分类:其他好文   时间:2014-08-09 21:34:29    阅读次数:233
ZOJ1109_Language of FatMouse(STL/map)
解题报告 题意: 略。 思路: map应用。 #include #include #include #include #include #include #include #include using namespace std; mapMap; int main() { string str1,str2,str; int i,j; while...
分类:其他好文   时间:2014-08-09 21:34:19    阅读次数:277
HDU 4923 Room and Moor (多校第六场C题) 单调栈
Problem Description PM Room defines a sequence A = {A1, A2,..., AN}, each of which is either 0 or 1. In order to beat him, programmer Moor has to construct another sequence B = {B1, B2,... , BN} of...
分类:其他好文   时间:2014-08-09 21:34:09    阅读次数:365
fzu-1753 Another Easy Problem-快速求N!中有多少个p
就是算出来每一个C(N,M)是由哪些数乘来的就好。。。。 #include #include #include #include #include #include #include #include using namespace std; #define LL long long #define lcm(a,b) (a*b/gcd(a,b)) //O(n)求素数,1-...
分类:其他好文   时间:2014-08-09 21:33:49    阅读次数:295
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!