JavaScript中void是一个操作符,该操作符指定要计算一个表达式但是不返回值。void
操作符用法格式如下:1. javascript:void (expression)2. javascript:void
expressionexpression是一个要计算的 JavaScript 标准的...
分类:
编程语言 时间:
2014-05-26 09:44:10
阅读次数:
314
LTRIM(character_expression)去掉前置空格LTRIM(RTRIM())就是把前置和后置空格都去掉。character_expression可以是常量、变量或列。character_expression必须属于某个可隐式转换为varchar的数据类型(text、ntext和im...
分类:
其他好文 时间:
2014-05-26 06:40:10
阅读次数:
193
日之前点击链接进行网上报名,只有报名成功的同学才能参加选拔赛。
问题 F: Graph
时间限制: 1 Sec 内存限制: 128 MB
提交: 30 解决: 5
[提交][状态][论坛]
题目描述
Your task is to judge whether a regular polygon can be drawn only by straightedge...
分类:
其他好文 时间:
2014-05-26 05:29:16
阅读次数:
389
Problem Description
In a 2_D plane, there is a point strictly in a regular polygon with N sides. If you are given the distances between it and N vertexes of the regular polygon, can you calculate t...
分类:
其他好文 时间:
2014-05-26 03:50:40
阅读次数:
252
获取指定元素的兄弟元素时,可以使用adjacent sibling combinator (+),其中+的两侧内容都是selector expression.
如果要获取下例中所有的 h1的直接兄弟元素h2
Main title
Section title
Some content...
Section title
More content...
...
分类:
Web程序 时间:
2014-05-26 03:17:52
阅读次数:
305
参考资料:cocoachina的zys475481075的文章
几个单词
Regular
['regj?l?]
adj.
定期的;有规律的
Expression
[?k'spre?(?)n;
ek-] n.
表现,表示
Regular
expression
正则表达式
什么是正则表达式?
用一个描述字符串去验证另一个字符串是否符合描...
分类:
移动开发 时间:
2014-05-25 16:17:20
阅读次数:
270
题目链接:uva 10312 - Expression Bracketing
题目大意:给出一个序列,长度为n,表示有n个x(节点),可以添加任意括号,问说形成的串为非二叉表达式的有多少个。
解题思路:直接求非二叉表达式是比较困难,所以换求总数减去二叉表达式的数量。二叉表达式的很容易发现是Catalan数,而总数时一种叫SuperCatalan数的一种序列,第一次接触。或者可以用dp做...
分类:
其他好文 时间:
2014-05-24 19:23:26
阅读次数:
309
Evaluate the value of an arithmetic expression
inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may be an
integer or another express...
分类:
其他好文 时间:
2014-05-22 15:28:54
阅读次数:
175
Case when 的用法--简单Case函数简单CASE表达式,使用表达式确定返回值.语法:
CASE search_expression WHEN expression1 THEN result1 WHEN expression2 THEN
result2 ... WHEN expre...
分类:
数据库 时间:
2014-05-22 14:56:26
阅读次数:
336
元计算是我设计的太极语言中一个重要的特征。这里元计算指的是在编译时间运行从源语言代码编译后获得的目标语言代码。受到C语言中的预处理指令前缀#(#define,
#if-#else等)的启发,我选用#开头的一组符号作为各种元运算的算符。比如##expression 是编译时间运行expression,...
分类:
其他好文 时间:
2014-05-22 14:00:09
阅读次数:
237