码迷,mamicode.com
首页 >  
搜索关键字:single    ( 5020个结果
Transactions and beyond it..
While data integrity is managed very effectively within a single database with row locking, deadlock detection, and roll-back features, distributed da...
分类:其他好文   时间:2015-02-13 16:16:08    阅读次数:143
JPA Hibernate 继承映射
在面向对象的程序领域中,类与类之间是有继承关系的,例如Java世界中只需要extends关键字就可以确定这两个类的父子关系,但是在关系数据库中,有的知识关联关系。为了将继承映射到关系数据库中,Hibernate提供了3中方式  整个的继承体系就用一张表(single_table)注解:@Inheritance(strategy =InheritanceType.SINGLE_TABL...
分类:Web程序   时间:2015-02-12 16:11:44    阅读次数:126
设计模式之--几个基本概念
一:单一职责原则(single Responsibility Principle) 接口尽量做到职责的单一性,类可以灵活设计,通过实现不同的接口来达到目的二:里氏替换原则 父类出现的地方,子类都可以出现。增强代码健壮性,版本升级时,即使增加子类,原有子类不受影响。每一个子类是一个业务实体,通过父.....
分类:其他好文   时间:2015-02-12 10:40:18    阅读次数:159
uva 10706 Number Sequence(找规律)
uva 10706 Number Sequence A single positive integer iis given. Write a program to find the digit located in the position iin the sequence of number groups S1S2…Sk. Each group Skconsists o...
分类:其他好文   时间:2015-02-12 09:22:27    阅读次数:156
[LeetCode] Wildcard Matching
Implement wildcard pattern matching with support for'?'and'*'.'?' Matches any single character.'*' Matches any sequence of characters (including the e...
分类:其他好文   时间:2015-02-11 20:33:41    阅读次数:153
JavaScript实现异步的4中方法
一:背景简介Javascript语言的执行环境是”单线程“(single thread)。所谓”单线程”,就是指一次只能完成一件任务。如果有多个任务,就必须排队,前面一个任务完成,再执行后面一个任务,以此类推。这种模式的好处是实现起来比较简单,执行环境相对单纯;坏处是只要有一个任务耗时很长,后面的任...
分类:编程语言   时间:2015-02-11 18:02:57    阅读次数:163
Oracle 索引的分类
逻辑上:Single column 单列索引Concatenated 多列索引Unique 唯一索引NonUnique 非唯一索引Function-based函数索引Domain 域索引物理上:Partitioned 分区索引NonPartitioned 非分区索引B-tree:Normal 正常型...
分类:数据库   时间:2015-02-11 12:27:22    阅读次数:171
目标检测中背景建模方法
最近一直在做前景检测方面的研究,刚开始主要是做一些工程性的应用,为了解决工程方面的问题,下了不少功夫,也看了不少最近国内外的文章。一直想做个总结,拖着拖着,终究却写成这篇极不成功的总结。 背景建模或前景检测的算法主要有:1. Single Gaussian (单高斯模型)Real-time trac...
分类:其他好文   时间:2015-02-11 09:18:37    阅读次数:116
leetcode[2]Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:其他好文   时间:2015-02-10 14:49:49    阅读次数:135
leetcode[44]Wildcard Matching
Implement wildcard pattern matching with support for'?'and'*'.'?' Matches any single character.'*' Matches any sequence of characters (including the e...
分类:其他好文   时间:2015-02-10 14:40:11    阅读次数:165
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!