今天有同事反映最近几天的数据在oracle中查不到。检查TT的错误日志显示:TT5211: TT5211: Oracle out of resource error in OCIStmtExecute(): ORA-01536: space quota exceeded for tablespace 'TBSLOG' rc = -1 -- file "bdbTblH.c",
lineno 24...
分类:
其他好文 时间:
2014-09-13 21:30:45
阅读次数:
191
Sort a linked list in O(n log n) time using constant space complexity./** * Definition for singly-linked list. * struct ListNode { * int val; * ...
分类:
其他好文 时间:
2014-09-13 21:25:35
阅读次数:
288
Sort a linked list inO(nlogn) time using constant space complexity. 1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int ...
分类:
其他好文 时间:
2014-09-13 20:08:05
阅读次数:
204
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space? 1 /** 2 * Definition for singly-linked l....
分类:
其他好文 时间:
2014-09-13 20:06:35
阅读次数:
184
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space? 1 ...
分类:
其他好文 时间:
2014-09-13 20:03:55
阅读次数:
205
个人笔记问题重现在asp.net mvc中,使用资源文件会出现一个问题,例如:紧接着我进入视图界面,输入下面代码:1 测试@KuaiLeYouNi.Web.AppResource.Space以上编译不会报错,但是运行是会报错:“编译器错误消息: CS0122: “KuaiLeYouNi.Web.Ap...
分类:
Web程序 时间:
2014-09-13 18:43:35
阅读次数:
219
Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.For e...
分类:
其他好文 时间:
2014-09-13 13:16:25
阅读次数:
142
Sort a linked list inO(nlogn) time using constant space complexity.归并排序的基本思想是:找到链表的middle节点,然后递归对前半部分和后半部分分别进行归并排序,最后对两个以排好序的链表进行Merge。/** * Definitio...
分类:
其他好文 时间:
2014-09-13 13:15:45
阅读次数:
155
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。def foo(a): l=len(a); letters=0; space=0; digit=0; others=0; for i in range(0,l): num=ord...
分类:
编程语言 时间:
2014-09-13 09:22:44
阅读次数:
228
一、概述Linux radix树最广泛的用途是用于内存管理,结构address_space通过radix树跟踪绑定到地址映射上的核心页,该radix树允许内存管理代码快速查找标识为dirty或writeback的页。Linux radix树的API函数在lib/radix-tree.c中实现。Lin...
分类:
系统相关 时间:
2014-09-12 23:21:14
阅读次数:
390