E. Elegant StringTime Limit:1000msCase Time
Limit:1000msMemory Limit:65536KB64-bit integer IO format:%lld Java class
name:MainSubmitStatusPID: 34985Fo...
分类:
其他好文 时间:
2014-05-26 08:23:51
阅读次数:
269
数组属性length计算长度方法join()将数组元素组合成reverse()反转数组sort()进行排序内置函数eval(string)eval函数直接计算出string的值isNaN(变量)检验参数是否是一个数字,如果不是数字返回trueString对象属性length返回字符串的长度方法big...
分类:
编程语言 时间:
2014-05-26 08:15:15
阅读次数:
241
Emag eht htiw Em PlehTime Limit: 1000MSMemory
Limit: 65536KTotal Submissions: 2578Accepted: 1731DescriptionThis problem is a
reverse case of the probl...
分类:
其他好文 时间:
2014-05-26 06:21:53
阅读次数:
297
/**9、定义一个静态方法,该方法可以接收一个List,方法内对List进行排序*/
import java.util.ArrayList;
import java.util.List;
public
class Test9 {
public
static void sort(List list) {
int size = ...
分类:
其他好文 时间:
2014-05-26 04:09:20
阅读次数:
343
下面是反转一个链表的两种方法:
一、循环算法
// //反转一个链表,循环算法
// LinkList Reverse(LinkList& head)
// {
// // if(!head)
// // return head;
// //此时不用判断head是否为空,如是空的话返回的也是空
// LinkList cur = head;
// LinkList hou;
//...
分类:
其他好文 时间:
2014-05-26 03:20:47
阅读次数:
211
例1: 批量 查询部门号为 "10" 号的并把它们打印出来 . DECLARE TYPE
emp_table_type IS TABLE OF my_emp%ROWTYPE INDEX BY BINARY_INTEGER; v_emp_table
emp_table_type;BEGIN SELE....
分类:
数据库 时间:
2014-05-26 01:26:47
阅读次数:
356
php是一种动态脚本语言,比较适合web开发。php支持8种变量数据类型:四种标量类型:boolean(布尔型)integer(整型)float(浮点型,也称作double)string(字符串)两种复合类型:array(数组)object(对象)最后是两种特殊类型:resource(资源)NULL...
分类:
Web程序 时间:
2014-05-25 23:56:47
阅读次数:
447
【题目】
Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.
For example,
Given n = 3,
You should return the following matrix:
[
[ 1, 2, 3 ],
[ 8, 9, 4 ],
[ 7, 6, 5 ]
]
【题意】
给定整数n, 将1,2,3...nxn个数按螺旋旋转的方式填入n...
分类:
其他好文 时间:
2014-05-25 07:08:17
阅读次数:
235
【题目】
The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other.
Given an integer n, return all distinct solutions to the n-queens puzzle.
Each solution contains a distinct board configuratio...
分类:
其他好文 时间:
2014-05-24 17:12:32
阅读次数:
237
An integer is divisible by 3 if the sum of its digits is also divisible by 3. For example, 3702 is divisible by 3 and 12 (3+7+0+2) is also divisible by 3. This property also holds for the integer 9.
...
分类:
其他好文 时间:
2014-05-24 14:30:47
阅读次数:
208