1,ATLAux.zipA set of VC++ helpers and patterns to help automate some routine coding tasks.(35KB)2,CltnWizard.zipATL object wizard that creates a collection of other COM objects(37KB)3,gridctrlatl.zip& lt;br>A grid control for displaying tabular d
1,01.zipCalling Stored Procedures调用存储过程(8KB)2,02.zipCreate Access data source name dynamically动态创建Access的数据源名(5KB)3,03.zipUsing DAO to read data sources other than MS Acc ess使用DAO读MS Access以外的数据源(6KB)4,04.zipHow to use RecordSets without using the A
1,pop3.zipCPop3Connection - an MFC Class to encapsulate the POP3 protocol(15KB)2,ipenum.zipIPEnum - an MFC class and console app to allow IP address enumeration(11KB)3,smtp.zipCSMTPConnectio n - an MFC Class to encapsulate the SMTP protocol(21KB)4,p
Delphi and C++ Builder components for accessing MS Access databases using DAO 3.5 and 3.6 (Data Access Objects). Provides fast native access to data without need of BDE (Borland Database Engine).
Adonis is a collection of Delphi and C++ Builder components for displaying and manipulating data through data-aware controls using ADO (ActiveX Data Objects) and RDS (Remote Data Service) for data access. Adonis is ideal for accessing data in MS Acc
Adonis is a collection of Delphi and C++ Builder components fordisplaying and manipulating data through data-aware controls using ADO(ActiveX Data Objects) and RDS (Remote Data Service) for dataaccess.Adonis is ideal for accessing data in MS Access,
The Way to Go,: A Thorough Introduction to the Go Programming Language 英文书籍,已Cross the wall,从Google获得书中源代码,分享一下。喜欢请购买正版。 目录如下: Contents Preface..........................................................................................................
MyBatis 目录(?)[-] mybatis实战教程mybatis in action之一开发环境搭建 mybatis实战教程mybatis in action之二以接口的方式编程 mybatis实战教程mybatis in action之三实现数据的增删改查 mybatis实战教程mybatis in action之四实现关联数据的查询 mybatis实战教程mybatis in action之五与spring3集成附源码 mybatis实战教程mybatis in action之六与S
Java集合框架
集合:集合就是一个容器,可以存储很多东西,可以添加,可以删除,可以修改。
Collection接口
Collection接口式Java集合的根接口,是所有集合的父接口。该接口里面提供了很多操作集合的抽象方法。
JDK源码的一个介绍:
The root interface in the collection hierarchy. A collection
represents a group of objects, known as its elements.
不相交集
我的不相交集(联合查找)数据结构的实现
用法
// divide collection on separate scopes
var unionFind = new DisjointSet ( nodes );
// check intersections between scopes of given objects
unionFind . Find ( Node1 , Node2 )
// union scopes
unionFind . Union ( Node1 , Node2