码迷,mamicode.com
首页 >  
搜索关键字:last lastordefault    ( 7540个结果
ORA-01843的错误 插入日期数据时报错
当我在SQLPLUS执行 : INSERT INTO customers (   customer_id, first_name, last_name, dob, phone ) VALUES (   5, 'Doreen', 'Blue', '20-MAY-1970', NULL ); 出现 “ORA-01843: 无效的月份 ”这个错误。 Google之后找到下面的这篇文章...
分类:其他好文   时间:2014-05-10 09:19:59    阅读次数:348
Last non-zero Digit in N!(阶乘最后非0位)
Last non-zero Digit in N!Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5861 Accepted Submissio...
分类:其他好文   时间:2014-05-09 04:13:09    阅读次数:360
angular学习笔记(七)-迭代3
每个迭代项中还有以下三个变量:$first: 判断是否是迭代第一项,如果是,得到true,如果不是,得到false$middle: 判断是否迭代中间项(既不是第一项也不是最后一项的都是中间项),如果是,得到true,如果不是,得到false$last: 判断是否是迭代最后项,如果是,得到true,如...
分类:其他好文   时间:2014-05-09 00:10:45    阅读次数:270
《linux 内核完全剖析》 fork.c 代码分析笔记
fork.c 代码分析笔记 verifiy_area long last_pid=0; //全局变量,用来记录目前最大的pid数值 void verify_area(void * addr,int size) // addr 是虚拟地址 ,size是需要写入的字节大小 { unsigned long start; start = (unsigned lo...
分类:系统相关   时间:2014-05-08 17:15:39    阅读次数:485
二叉树附加删除算法
public class Tree { TreeNode last = null; TreeNode root = null; public Tree(int value){ root = createNode(value); } ...
分类:其他好文   时间:2014-05-08 01:04:08    阅读次数:349
linux c实现的提取文件名的小程序
/*@author etangyushan*工作中很多时候会和文件名打交道,有时候只需要文件名称,就写了这么一个小程序*这个函数实现了把一个文件的绝对路径和后缀去除,只留下文件名的功能* */#include #include #include //找到最后的slash(/)int last_mar...
分类:系统相关   时间:2014-05-07 18:02:20    阅读次数:344
codechef Recipe Reconstruction 题解
Chef had an interesting dream last night. He dreamed of a new revolutionary chicken recipe. When he woke up today he tried very hard to reconstruct the ingredient list. But, he could only remember cer...
分类:其他好文   时间:2014-05-07 11:23:54    阅读次数:330
wikioi 1163 访问艺术馆 树形dp
递归建树,由题知该树是一棵二叉树,且除根节点外其他点的度为0或2。 dp[i][j]表示来到第i个走廊(还未走过这条走廊)还剩下j时间,能拿到最大的画的数量。 dp[i][j]=max(dp[i][j],dp[lson[i]][k]+dp[rson][last_time-k]) #include #include using namespace std; int dp[200][70...
分类:其他好文   时间:2014-05-07 05:02:45    阅读次数:295
Last non-zero Digit in N!
Problem DescriptionThe expression N!, read as "N factorial," denotes the product of the first N positive integers, where N is nonnegative. So, for exa...
分类:其他好文   时间:2014-05-07 00:11:55    阅读次数:353
linux之几个命令
whoami:当前登录到系统的有效用户who:显示当前系统上登录的用户都有哪些-r:显示当前的运行级别的who|grep"hadoop" echo$?w:显示谁登陆了,并且正在干什么。(显示的信息比who更详细)last:显示登录的日志,记录登录历史和重启历史-n#:只显示#次的登录信息lastb:/var/log/..
分类:系统相关   时间:2014-05-06 16:05:21    阅读次数:506
7540条   上一页 1 ... 750 751 752 753 754 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!