题目
Implement atoi to convert a string to an integer.
Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possibl...
分类:
其他好文 时间:
2014-06-24 23:14:28
阅读次数:
238
JavaScript高级特性:作用域、闭包、对象。...
分类:
编程语言 时间:
2014-06-24 18:02:25
阅读次数:
309
难得想写个mapreduce程序,发现已经不记得需要添加那些jar包了,网上找了一会也没发现准确的答案。幸好对hadoop体系结构略知一二,迅速试出了写mapreduce程序需要的三个jar包。
不多不少,3个包足矣……贴出来免得其朋友再走弯路
(请忽视包的版本不一致问题,是我从其他项目中东拼西凑过来的)...
分类:
其他好文 时间:
2014-06-24 21:44:15
阅读次数:
321
XML 常用的三种解析方式:
DOM: 全部加载到内存,生成一个树状结构,占用内存比较大。
SAJ: 采用事件驱动,速度快,效率高,不支持回退。
PULL:也是采用事件驱动,语法简洁。
步骤:
1. 创建XML 解析器:XmlPullParser parser = Xml.newPullParser();
2. 配置解析器:parser.setInput(is, "utf-8")...
分类:
移动开发 时间:
2014-06-24 18:01:49
阅读次数:
253
由于 腾讯自带的linux for qq 已经无法登陆,于是详尽各种办法在fedora 上安装 qq ,但均以失败高中,于是使用了几天web qq 但终于无法忍受,于是有研究起来了 pidgin-lwqq
终于安装成功,上图直接
可以首发图片
以下直接上安装步骤
1. 首先安装 pidgin
1
sudo yum
install pidgin
...
分类:
其他好文 时间:
2014-06-24 15:36:25
阅读次数:
286
题目
Reverse digits of an integer.
Example1: x = 123, return 321
Example2: x = -123, return -321
Have you thought about this?
Here are some good questions to ask before coding. Bonus poin...
分类:
其他好文 时间:
2014-06-24 20:16:39
阅读次数:
180
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) {
ExitDialog(MainActivity.this).show();
return tr...
分类:
移动开发 时间:
2014-06-24 18:01:09
阅读次数:
279
该类为反射函数 获取和暴力获取ReflectPoin类中的属性
package com.tuozou.test;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
public class ReflectTes...
分类:
编程语言 时间:
2014-06-24 22:02:03
阅读次数:
252
题目
The string "PAYPALISHIRING" is written in a zigzag pattern on a given
number of rows like this: (you may want to display this pattern in a fixed font for better legibility)
P A H ...
分类:
其他好文 时间:
2014-06-24 23:59:25
阅读次数:
338
题目
Given a string S,
find the longest palindromic substring in S.
You may assume that the maximum length of S is
1000, and there exists one unique longest palindromic substring.
方法
...
分类:
其他好文 时间:
2014-06-24 19:36:55
阅读次数:
212
此篇文章是我前几天写的一篇文章的核心内容,其中很多人提出了异议,在这里发出来,让大家做一评论,希望在大家的帮助下自己的想法更成熟。当然了这里不仅仅限于中学,更适用于各种培训机构,或者更广……能力教学方式的背景 当今中学教育正处于一个新课标代替旧大纲的阶段,而且这个阶段正在如火如荼的进行中,各方各界,都有一些新的教育方法.在教学活动中不仅仅是简单的授课这种方式了,增多了各种讨论活动,竞赛...
分类:
其他好文 时间:
2014-06-24 15:35:45
阅读次数:
215
之前用ThinkPHP时发现有个 trace 函数可以跟踪调试,感觉很有意思,网上搜索了下类似的东西,发现了 ChromePhp ,以前没想过这样来调试 PHP 程序,感觉非常方便,很有用。
ThinkPHP 使用的是自己生成的 HTML 随模版一起输出来显示,偶尔会遇到一些莫名其妙的问题,效果不是太好,
还有一些也是类似的方法,但输出的主要是在模版中增加 JS 代码,调用浏览器的调试方法进行...
分类:
Web程序 时间:
2014-06-24 23:06:00
阅读次数:
297
题目
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return...
分类:
其他好文 时间:
2014-06-24 21:46:24
阅读次数:
249