<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: ucweb 面试记</title>
	<atom:link href="http://www.mikespook.com/index.php/archives/279/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mikespook.com/index.php/archives/279</link>
	<description>Just another boring day</description>
	<lastBuildDate>Mon, 09 Aug 2010 12:29:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: mikespook</title>
		<link>http://www.mikespook.com/index.php/archives/279/comment-page-1#comment-1570</link>
		<dc:creator>mikespook</dc:creator>
		<pubDate>Tue, 03 Aug 2010 08:30:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikespook.com/?p=279#comment-1570</guid>
		<description>谢楼上这哥们的好意，加你Q了～～
不过北京不适合我，另外，现在在 IDG 投资的一个小公司里谋了份打杂的差事，干着还行。</description>
		<content:encoded><![CDATA[<p>谢楼上这哥们的好意，加你Q了～～<br />
不过北京不适合我，另外，现在在 IDG 投资的一个小公司里谋了份打杂的差事，干着还行。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 食品楼8</title>
		<link>http://www.mikespook.com/index.php/archives/279/comment-page-1#comment-1554</link>
		<dc:creator>食品楼8</dc:creator>
		<pubDate>Thu, 29 Jul 2010 02:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikespook.com/?p=279#comment-1554</guid>
		<description>http://www.uc.cn/a/job/social/2010/0423/1277.html
UC北京公司的招聘职位，应该很适合你。。
可以联系我：qq:252863866 mail:patronzlj@gmail.com</description>
		<content:encoded><![CDATA[<p><a href="http://www.uc.cn/a/job/social/2010/0423/1277.html" rel="nofollow">http://www.uc.cn/a/job/social/2010/0423/1277.html</a><br />
UC北京公司的招聘职位，应该很适合你。。<br />
可以联系我：qq:252863866 mail:patronzlj@gmail.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ninny</title>
		<link>http://www.mikespook.com/index.php/archives/279/comment-page-1#comment-1069</link>
		<dc:creator>ninny</dc:creator>
		<pubDate>Thu, 21 Jan 2010 14:01:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikespook.com/?p=279#comment-1069</guid>
		<description>BS掉是一种另类的荣誉~~~哈哈~~</description>
		<content:encoded><![CDATA[<p>BS掉是一种另类的荣誉~~~哈哈~~</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Micah</title>
		<link>http://www.mikespook.com/index.php/archives/279/comment-page-1#comment-1066</link>
		<dc:creator>Micah</dc:creator>
		<pubDate>Mon, 11 Jan 2010 05:45:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikespook.com/?p=279#comment-1066</guid>
		<description>哈，明天我也要面UCWeb，刚看到LZ的面经，有用啊！！
贴一段我写的大数相加代码出来，用递归实现的

         /**
	 * use the recursion to add the big integer.
	 * 
	 * @param num1
	 * @param num2
	 * @param isCarry
	 * @param result
	 */
	public static void addBigInt(StringBuffer num1, StringBuffer num2, int pos,
			boolean isCarry, StringBuffer result) {
		if (pos &lt; num1.length() &#124;&#124; pos &lt; num2.length()) {
			int value = 0;
			if (isCarry) {
				value++;
			}
			char temp1 = pos &lt; num1.length() ? num1.charAt(pos) : &#039;0&#039;;
			char temp2 = pos = 10) {
				isCarry = true;
				value -= 10;
			} else {
				isCarry = false;
			}
			result.append(value);
			addBigInt(num1, num2, ++pos, isCarry, result);
		} else {
			if (isCarry) {
				result.append(&#039;1&#039;);
				addBigInt(num1, num2, ++pos, false, result);
			}
		}

	}

	/**
	 * add method for big number.
	 * 
	 * @param num1
	 * @param num2
	 */
	public static String addBigInt(StringBuffer num1, StringBuffer num2) {
		StringBuffer result = new StringBuffer();

		num1.reverse();
		num2.reverse();

		addBigInt(num1, num2, 0, false, result);

		result.reverse();

		return result.toString();
	}
一起share一下～～</description>
		<content:encoded><![CDATA[<p>哈，明天我也要面UCWeb，刚看到LZ的面经，有用啊！！<br />
贴一段我写的大数相加代码出来，用递归实现的</p>
<p>         /**<br />
	 * use the recursion to add the big integer.<br />
	 *<br />
	 * @param num1<br />
	 * @param num2<br />
	 * @param isCarry<br />
	 * @param result<br />
	 */<br />
	public static void addBigInt(StringBuffer num1, StringBuffer num2, int pos,<br />
			boolean isCarry, StringBuffer result) {<br />
		if (pos &lt; num1.length() || pos &lt; num2.length()) {<br />
			int value = 0;<br />
			if (isCarry) {<br />
				value++;<br />
			}<br />
			char temp1 = pos &lt; num1.length() ? num1.charAt(pos) : &#039;0&#039;;<br />
			char temp2 = pos = 10) {<br />
				isCarry = true;<br />
				value -= 10;<br />
			} else {<br />
				isCarry = false;<br />
			}<br />
			result.append(value);<br />
			addBigInt(num1, num2, ++pos, isCarry, result);<br />
		} else {<br />
			if (isCarry) {<br />
				result.append(&#8217;1&#8242;);<br />
				addBigInt(num1, num2, ++pos, false, result);<br />
			}<br />
		}</p>
<p>	}</p>
<p>	/**<br />
	 * add method for big number.<br />
	 *<br />
	 * @param num1<br />
	 * @param num2<br />
	 */<br />
	public static String addBigInt(StringBuffer num1, StringBuffer num2) {<br />
		StringBuffer result = new StringBuffer();</p>
<p>		num1.reverse();<br />
		num2.reverse();</p>
<p>		addBigInt(num1, num2, 0, false, result);</p>
<p>		result.reverse();</p>
<p>		return result.toString();<br />
	}<br />
一起share一下～～</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ying09</title>
		<link>http://www.mikespook.com/index.php/archives/279/comment-page-1#comment-920</link>
		<dc:creator>ying09</dc:creator>
		<pubDate>Mon, 21 Sep 2009 06:09:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikespook.com/?p=279#comment-920</guid>
		<description>笔试完以后就没有消息了吗？难道让你等消息就是被BS掉了？</description>
		<content:encoded><![CDATA[<p>笔试完以后就没有消息了吗？难道让你等消息就是被BS掉了？</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: grandia</title>
		<link>http://www.mikespook.com/index.php/archives/279/comment-page-1#comment-896</link>
		<dc:creator>grandia</dc:creator>
		<pubDate>Tue, 01 Sep 2009 08:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikespook.com/?p=279#comment-896</guid>
		<description>哥们,其实是有PHP试题的,看来你运气不太好.当天没有见到经理的话机会就很低了.</description>
		<content:encoded><![CDATA[<p>哥们,其实是有PHP试题的,看来你运气不太好.当天没有见到经理的话机会就很低了.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yeyu</title>
		<link>http://www.mikespook.com/index.php/archives/279/comment-page-1#comment-752</link>
		<dc:creator>yeyu</dc:creator>
		<pubDate>Thu, 02 Jul 2009 05:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikespook.com/?p=279#comment-752</guid>
		<description>哥哥,做完那些题后,UC会去改分数，第一面不是部门经理，是HR,第二面才是部门经理,第三面是部门总监,我都面了，结果还是没进，郁闷ing,</description>
		<content:encoded><![CDATA[<p>哥哥,做完那些题后,UC会去改分数，第一面不是部门经理，是HR,第二面才是部门经理,第三面是部门总监,我都面了，结果还是没进，郁闷ing,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ninny</title>
		<link>http://www.mikespook.com/index.php/archives/279/comment-page-1#comment-558</link>
		<dc:creator>ninny</dc:creator>
		<pubDate>Mon, 23 Feb 2009 09:24:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikespook.com/?p=279#comment-558</guid>
		<description>没语言~~都怪你学艺不精~~回家努力去!</description>
		<content:encoded><![CDATA[<p>没语言~~都怪你学艺不精~~回家努力去!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rocky</title>
		<link>http://www.mikespook.com/index.php/archives/279/comment-page-1#comment-557</link>
		<dc:creator>Rocky</dc:creator>
		<pubDate>Mon, 23 Feb 2009 05:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikespook.com/?p=279#comment-557</guid>
		<description>有没有兴趣来我们这儿试试？
http://labs.chinamobile.com/foot/web_jobs.php</description>
		<content:encoded><![CDATA[<p>有没有兴趣来我们这儿试试？<br />
<a href="http://labs.chinamobile.com/foot/web_jobs.php" rel="nofollow">http://labs.chinamobile.com/foot/web_jobs.php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: huihui</title>
		<link>http://www.mikespook.com/index.php/archives/279/comment-page-1#comment-552</link>
		<dc:creator>huihui</dc:creator>
		<pubDate>Wed, 18 Feb 2009 18:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikespook.com/?p=279#comment-552</guid>
		<description>有点意思，雷军投资了很多公司了据说，而且他本人也应该专注于投资方面的事情了，想追随他恐怕不那么容易吧，哈哈～</description>
		<content:encoded><![CDATA[<p>有点意思，雷军投资了很多公司了据说，而且他本人也应该专注于投资方面的事情了，想追随他恐怕不那么容易吧，哈哈～</p>
]]></content:encoded>
	</item>
</channel>
</rss>
