今天工作当中,遇到一个问题,XML的Schema文件中定义的complexType是一个Sequence,这就要求符合这个Schema定义的XML的数据节点,必须要按照Schema中Sequence定义的顺序出现(etag-->id-->kind-->selfLink-->title-->updated),否则Schema校验将会出错。请见下图1和图2, 换句话说,在于XML的数据中节点的出现的顺序和必须和Schema中(节点的顺序是按照节点名字的字母升序排列)定义的顺序一致,否则Schema的校验是通不过...
分类:
其他好文 时间:
2014-06-04 22:00:50
阅读次数:
272
1.Problem DescriptionGiven a sequence
a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a
sub-sequence. For example, given (6,-1,5,4,-...
分类:
其他好文 时间:
2014-06-02 17:36:53
阅读次数:
234
ParencodingsDescriptionLet S = s1 s2...s2n be a
well-formed string of parentheses. S can be encoded in two different ways: q By
an integer sequence P ...
分类:
其他好文 时间:
2014-06-02 06:19:50
阅读次数:
185
A.Another Recurrence Sequence
B.Gears
题目大意:有n个齿轮,一开始各自为一组,之后进行m次操作,包括以下4种类型:
1.合并两组齿轮,合并的两个应该反向旋转
2.把某个齿轮从所在组删除,自为一组,但不影响同组其它齿轮的状态与关系
3.询问两个齿轮是同向、反向或无关系(即不在同一组)
4.询问某个齿轮所在组的齿轮总数
分析:...
分类:
其他好文 时间:
2014-06-02 04:44:36
阅读次数:
301
3.3进程日志的监控操作
3.3.1查看备库进程状态
SQL>selectprocess,client_process,sequence#,statusfromv$managed_standby
PROCESSCLIENT_PSEQUENCE#STATUS
---------------------------------------
ARCHARCH153CLOSING
ARCHARCH154CLOSING
ARCHARCH155CLOSING
ARCHARCH15..
分类:
数据库 时间:
2014-06-02 03:28:04
阅读次数:
543
本文介绍RS/6000启动过程中机器上的液晶显示屏代码的含义。
本文代码不针对具体机型。
----------DumpProgressIndicator----------
0c0Thedumpcompletedsuccessfully
0c1ThedumpfailedduetoanI/Oerror.
0c2
Auser-requesteddumphasstarted.YourequestedadumpusingtheSYSDU..
分类:
其他好文 时间:
2014-06-02 03:05:59
阅读次数:
389
题意:对数列有三种操作:
Print operation l,?r. Picks should write down the value of .
Modulo operation l,?r,?x. Picks should perform assignment a[i]?=?a[i] mod x for
each i (l?≤?i?≤?r).
Set operation k...
分类:
其他好文 时间:
2014-06-02 02:56:56
阅读次数:
465
问题:
对于给定序列1...n,permutations共有 n!个,那么任意给定k,返回第k个permutation。0
分析:
这个问题要是从最小开始直接到k,估计会超时,受10进制转换为二进制的启发,对于排列,比如 1,2,3 是第一个,那么3!= 6,所以第6个就是3,2,1。也就是说,从开始的最小的序列开始,到最大的序列,就是序列个数的阶乘数。那么在1,3 , 2的时候呢?调整一...
分类:
其他好文 时间:
2014-06-01 14:03:55
阅读次数:
257
title:
The sequence of triangle numbers is generated by adding the natural numbers. So the 7th triangle number would be 1 + 2 + 3 + 4 + 5 + 6 + 7 = 28. The first ten terms would be:
1, 3, 6, 10,...
分类:
其他好文 时间:
2014-06-01 10:31:26
阅读次数:
233
【题目】
The gray code is a binary numeral system where two successive values differ in only one bit.
Given a non-negative integer n representing the total number of bits in the code, print the sequence of gray code. A gray code sequence must begin with 0.
...
分类:
其他好文 时间:
2014-06-01 09:16:29
阅读次数:
242