码迷,mamicode.com
首页 > 2014年08月09日 > 全部分享
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
POJ Exponentiation(大浮点数JAVA轻松解决)
题目链接:Clicke Here~ java解决大数就是爽阿!~ 以前大数模板敲啊敲的,敲了半天发现一交果断wrong。只从学会了java妈妈在不用担心我遇到大数了/ 这道题遇到的Java函数有: stripTrailingZeros()            去掉后缀0 toPlainString()               返回大数的非科学计数法 startsWith() s...
分类:编程语言   时间:2014-08-09 21:36:19    阅读次数:371
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
window应用移植到Linux下(应用移植)
?? 配置QT的环境变量,这台电脑à属性à高级系统设置à高级à环境变量à系统变量àpathàC:\Qt\Qt5.3.0\5.3\mingw482_32\bin;C:\Qt\Qt5.3.0\Tools\QtCreator\bin 创建一个QT项目:winAndLinuxMyUdpProject项目 修改QT的项目文件,修改winAndLinuxMyUdpProj...
分类:Windows程序   时间:2014-08-09 21:35:59    阅读次数:469
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
ZOJ2724_Windows Message Queue(STL/优先队列)
解题报告 题意: 看输入输出就很明白。 思路: 优先队列。 #include #include #include #include #include #include #include #include using namespace std; struct node { char m[100]; int v,k; friend bool ope...
分类:Windows程序   时间:2014-08-09 21:35:19    阅读次数:374
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
Android开发之SpannableString详解
在实际的应用开发过程中经常会遇到,在文本的不同部分显示一些不同的字体风格的信息如:文本的字体、大小、颜色、样式、以及超级链接等。一般情况下,TextView中的文本都是一个样式,对于类似的情况,可以借助SpannableString或SpannableStringBuilder对象来实现以上设置。...
分类:移动开发   时间:2014-08-09 21:33:59    阅读次数:298
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
1308条   上一页 1 ... 7 8 9 10 11 12 13 ... 77 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!