码迷,mamicode.com
首页 >  
搜索关键字:shared elements tran    ( 12347个结果
1-1SBO学习心得(存储过程应用)
SBO_SP_TransactionNotification这个存储过程主要应用于页面操作(数据库操作)的放行和阻止。当返回0时放行(commit),当返回1时阻止(回滚)。-- ADD YOUR CODE HEREif @object_type='22' and @tran...
分类:其他好文   时间:2014-07-07 20:17:52    阅读次数:195
Problem Longest Consecutive Sequence
Problem Description:Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given[100, 4, 200, 1...
分类:其他好文   时间:2014-07-07 15:54:24    阅读次数:193
Leetcode Spiral Matrix
Given a matrix ofmxnelements (mrows,ncolumns), return all elements of the matrix in spiral order.For example,Given the following matrix:[ [ 1, 2, 3 ],...
分类:其他好文   时间:2014-07-07 14:22:37    阅读次数:210
现代C++学习笔记之一入门篇:智能指针(C++ 11)
原始指针:通过new建立的*指针智能指针:通过智能指针关键字(unique_ptr, shared_ptr ,weak_ptr)建立的指针在现代 C++ 编程中,标准库包含智能指针,该指针用于确保程序不存在内存和资源泄漏且是异常安全的。在现代 C++ 中,原始指针仅用于范围有限的小代码块、循环或者性...
分类:编程语言   时间:2014-06-30 13:49:42    阅读次数:354
?统计学习精要(The Elements of Statistical Learning)?课堂笔记(二)
继续一周一次的课堂笔记 :D 昨天去晚了站着听讲,感觉好好啊,注意各种集中。想想整个教室里面就是我和老师是站着的,自豪感油然而生。 第二次课讲的东西依旧比较简单,是这本书第二章的前半部分。作为一个好久之前已经预习过的孩子,我表示万分的得意(最小二乘法难道不是三四年前就学过的?话说以后我再面人的时候,就让他推导最小二乘估计量,嘻嘻...考验一下基本功)。 ------------原谅我的...
分类:其他好文   时间:2014-06-30 10:00:55    阅读次数:185
Linux下Memcached的安装步骤
Linux下Memcached的安装步骤,如果出现/usr/local/memcached/bin/memcached: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory异常在/etc/ld.so.conf中加入/usr/local/lib这一行,保存之后,再运行:/sbin/ldconfig –v更新一下配置即可。...
分类:系统相关   时间:2014-06-30 09:20:50    阅读次数:320
Java的结构之美【2】——销毁对象
先来看一段代码:import java.util.Arrays; import java.util.EmptyStackException; /** * 2014年6月28日09:31:59 * @author 阳光小强 * */ public class Stack { private Object[] elements; private int size = 0; privat...
分类:编程语言   时间:2014-06-30 08:45:00    阅读次数:220
?统计学习精要(The Elements of Statistical Learning)?课堂笔记(一)
前两天微博上转出来的,复旦计算机学院的吴立德吴老师在开?统计学习精要(The Elements of Statistical Learning)?这门课,还在张江...大牛的课怎能错过,果断请假去蹭课...为了减轻心理压力,还拉了一帮同事一起去听,eBay浩浩荡荡的十几人杀过去好不壮观!总感觉我们的人有超过复旦本身学生的阵势,五六十人的教室坐的满满当当,壮观啊。 这本书正好前阵子一直在看,所...
分类:其他好文   时间:2014-06-29 23:58:22    阅读次数:321
?统计学习精要(The Elements of Statistical Learning)?课堂笔记(三)
照例文章第一段跑题,先附上个段子(转载的哦~): I hate CS people. They don't know linear algebra but want to teach projective geometry. They don't know any probability but want to use graphical models. They don't under...
分类:其他好文   时间:2014-06-29 22:35:13    阅读次数:358
Longest Consecutive Sequence
题目 Given an unsorted array of integers, find the length of the longest consecutive elements sequence. For example, Given [100, 4, 200, 1, 3, 2], The longest consecutive elements sequence...
分类:其他好文   时间:2014-06-29 22:16:48    阅读次数:239
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!