简述drop table
tmp_qry_cus_186mcc_highuser_d;create global temporary table
tmp_qry_cus_186mcc_highuser_d( user_id number(15))on commit preserve rows; 这....
分类:
数据库 时间:
2014-05-19 20:57:00
阅读次数:
399
以一个例子来说,下面是他的Object:JS:如果想直接获取到total的值,那就先把获取到的Json先Eval(),然后json.total就能取到total的值了,但是如果想取到rows里面的值呢,我们先得进去rows,那就应该是:json.rows,但是我们alert的时候发现,这个rows有...
分类:
Web程序 时间:
2014-05-19 20:46:35
阅读次数:
310
Question 1:Given an array of integers, find two
numbers such that they add up to a specific target number.The function twoSum
should return indices of...
分类:
其他好文 时间:
2014-05-19 09:35:41
阅读次数:
321
题目:合并两个有序单链表思路:一开始想复杂了,以为必须在原链表上修改(绕来绕去还AC了,但是思路相当绕),其实没有,按照正常地合并两个数组同样的方法也对。代码:public
ListNode mergeTwoLists(ListNode l1, ListNode l2) { if(l1 ...
分类:
其他好文 时间:
2014-05-19 07:48:32
阅读次数:
314
现如今,网站开发设计的需求会要求自动适应所有移动设备,即响应式网站:
在开发网站时必须考虑对平板设备融合 fluid(流)和自适应性特点。 大多数网站设计要靠margins, guides, rows and
columns等网格系统和布局来在网页上组织内容。网格设计常见于报纸和杂志中的文字图像排....
分类:
Web程序 时间:
2014-05-18 19:46:00
阅读次数:
437
【题目】
原文:
1.8 Assume you have a method isSubstring which checks if one word is a substring of another. Given two strings, s1 and s2, write code to check if s2 is a rotation of s1 using only one...
分类:
其他好文 时间:
2014-05-16 01:50:08
阅读次数:
311
【题目】
Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms a contain...
分类:
其他好文 时间:
2014-05-16 01:32:47
阅读次数:
406
现如今,网站开发设计的需求会要求自动适应所有移动设备,即响应式网站:
在开发网站时必须考虑对平板设备融合 fluid(流)和自适应性特点。 大多数网站设计要靠margins, guides, rows and
columns等网格系统和布局来在网页上组织内容。网格设计常见于报纸和杂志中的文字图...
分类:
Web程序 时间:
2014-05-16 00:52:26
阅读次数:
464
介绍ViewFlipper
ViewFlipper
Simple ViewAnimator that will animate between two or more views that have been added to it. Only one child is shown at a time. If requested, can automatically flip betwee...
分类:
其他好文 时间:
2014-05-15 18:37:44
阅读次数:
356
Given two binary strings, return their sum
(also a binary string).For example, a = "11" b = "1" Return "100".string
的操作,短string补位。两个“0”会输出一个“00”,要特殊处理...
分类:
其他好文 时间:
2014-05-15 17:47:57
阅读次数:
283