版本控制比较普遍的 3 种命名格式 :一、GNU 风格的版本号命名格式 : 主版本号 . 子版本号 [. 修正版本号 [. 编译版本号 ]]Major_Version_Number.Minor_Version_Number[.Revision_Number[.Build_Number]]示例 : 1...
分类:
其他好文 时间:
2015-04-28 08:14:53
阅读次数:
166
变量和变量类型变量是一块用来存储数据的内存区域,定义在PL/SQL块的declare区域在定义变量时通常需要为变量指定一个数据类型,也可以在定义变量时为变量指定一个初始值。变量的类型可以使任何SQL数据类型或者特定的PL/SQL类型主要有4种类型的变量1、标量变量指代存放单个数值..
分类:
数据库 时间:
2015-04-28 02:06:22
阅读次数:
157
/*
完全数(Perfect number),又称完美数或完备数,是一些特殊的自然数。
它所有的真因子(即除了自身以外的约数)的和(即因子函数),恰好等于它本身。
例如,第一个完全数是6,它有约数1、2、3、6,除去它本身6外,其余3个数相加,1+2+3=6。
第二个完全数是28,它有约数1、2、4、7、14、28,除去它本身28外,其余5个数相加,1+2+4+7+14=28。
编程求1...
分类:
其他好文 时间:
2015-04-28 02:01:45
阅读次数:
137
Description:Count the number of prime numbers less than a non-negative number,nHint:The number n could be in the order of 100,000 to 5,000,000.click t...
分类:
其他好文 时间:
2015-04-27 23:37:49
阅读次数:
147
Number Sequence
Time Limit: 1000ms Memory limit: 65536K 有疑问?点这里^_^
题目描述
A number sequence is defined as follows:
f(1) = 1, f(2) = 1, f(n) = (A * f(n - 1) + B * f(n - 2)) mo...
分类:
其他好文 时间:
2015-04-27 21:51:32
阅读次数:
125
Time Limit: 3000MS
Memory Limit: 65536K
Total Submissions: 20161
Accepted: 7532
Description
Given an N*N matrix A, whose elements are either 0 or 1. A[i, j] means the number in th...
分类:
其他好文 时间:
2015-04-27 21:46:24
阅读次数:
130
Problems:Write a function that takes an unsigned integer and returns the number of ’1' bits it has (also known as theHamming weight).For example, the ...
分类:
其他好文 时间:
2015-04-27 21:37:54
阅读次数:
112
Description:Count the number of prime numbers less than a non-negative number,nHint:The number n could be in the order of 100,000 to 5,000,000.C++实现代码...
分类:
其他好文 时间:
2015-04-27 21:22:18
阅读次数:
92
Single Number Given an array of integers, every element appears twice except for one. Find that single one. Note:Your algorithm should have a linear r...
分类:
编程语言 时间:
2015-04-27 21:21:04
阅读次数:
131