As a graduate, it's a shame that i do not have my technical blog. Actually, the thought of having my own blog last for long and i even wrote my person...
分类:
其他好文 时间:
2014-07-25 19:12:32
阅读次数:
360
进来的开发一直都很奇葩,从PC web前端到web后端再到iOS端再到Android端,每一次都是摸了点皮毛就得因为项目需求转战其他平台,想想真觉得不合适。就像从昨天其遇到的这个问题,竟然调了几个小时才确定问题。 下面废话少说了,写trouble shooting。 之前依照网上的教程已经跑...
分类:
移动开发 时间:
2014-07-23 22:29:27
阅读次数:
268
最近在测试通过http delete method传参数调用服务端方法,遇到了java.net.ProtocolException: DELETE does not support writing try { url = new URL(path); HttpURLConnectio...
分类:
编程语言 时间:
2014-07-23 12:45:56
阅读次数:
369
合并排序再枚举。
题意问五个数组中各抽一个加起来 和是否为 0。
开始想用 200*200*200 和 200*200 比。果然TLE了。
后来知道 得 200*200,200*200 ,200 。
先200*200 的枚举,排序,去重。然后三个元素加起来,微调 两个 200*200 的指针。
这题用 %lld 就WA。得用 %I64d 。贡献N多TLE。...
分类:
其他好文 时间:
2014-07-22 23:56:47
阅读次数:
471
最近看了一篇文章,译名《简历危险》,原名《Resumes are dangerous》。 作者为Alex Maccaw,他有一篇文章曾经在网上流传甚广——《Traveling, Writing and Programming (2011)》(及其后续的《How to travel ar...
分类:
其他好文 时间:
2014-07-21 10:36:25
阅读次数:
231
1881. Long problem statementTime limit: 0.5 secondMemory limit: 64 MBWhile Fedya was writing the statement of the problem GOV Chronicles, he realized....
分类:
其他好文 时间:
2014-07-19 15:08:30
阅读次数:
214
Faced with the upcoming exam, Some useful methods referred to file operation drew tremenous attention. Now I make a summary to reading file.
import java.io.BufferedReader;
import java.io.BufferedWri...
分类:
其他好文 时间:
2014-07-18 12:26:25
阅读次数:
274
Size of Data TypesAlways use sizeof() to get the size of types(sizeof(char), sizeof(short), sizeof(int)...)Do not depend on the order of evaluation in...
分类:
其他好文 时间:
2014-07-16 15:51:58
阅读次数:
191
using System;
using System.Security.Cryptography;
using System.Text;
namespace Maticsoft.DBUtility
{
///
/// DES加密/解密类。
///
public class DESEncrypt
{
public DESEncrypt()
{
}
#regi...
分类:
其他好文 时间:
2014-07-16 11:21:38
阅读次数:
194
Problem Description
Mario is world-famous plumber. His “burly” figure and amazing jumping ability reminded in our memory. Now the poor princess is in trouble again and Mario needs to save his lover. ...
分类:
其他好文 时间:
2014-07-12 17:57:06
阅读次数:
174