码迷,mamicode.com
首页 >  
搜索关键字:collections deque counter    ( 12297个结果
ADMethodsAccountManagement 一些简单注释添加
using System;using System.Collections;using System.Text;using System.DirectoryServices.AccountManagement;using System.Data;using System.Configuration;...
分类:其他好文   时间:2014-05-27 01:31:12    阅读次数:426
C#多线程的简单例子
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;//using System.Threading.Tasks;using System.I...
分类:编程语言   时间:2014-05-19 20:01:31    阅读次数:258
[NHibernate]Nullables
系列文章[Nhibernate]体系结构[NHibernate]ISessionFactory配置[NHibernate]持久化类(Persistent Classes)[NHibernate]O/R Mapping基础[NHibernate]集合类(Collections)映射[NHibernat...
分类:系统相关   时间:2014-05-19 16:38:40    阅读次数:396
在一般处理程序中,把Form Post过来的表单集合转换成对象 ,仿 MVC post,反射原理
using System;using System.Collections.Generic;using System.Collections.Specialized;using System.Linq;using System.Reflection;using System.Web;using We...
分类:Web程序   时间:2014-05-18 19:06:49    阅读次数:451
STL算法 — sort
能使用STL的sort系列算法的前提是容器的迭代器必须为随机迭代器。所以,vector和deque天然适用。STL的sort算法采用了一些策略,在不同情况下采用不同的排序算法,以达到各种算法优势互补的效果。基本的原则是:数据量大时采用快速排序,数据量小时采用插入排序(这是对快排常用的一种优化策略),递归层次过深改用堆排序。 首先是插入排序。它的平均和最坏时间复杂度都为O(N²),量级小于...
分类:其他好文   时间:2014-05-18 14:40:31    阅读次数:241
[NHibernate]使用AttributeNHibernate.Mapping.Attributes
系列文章[Nhibernate]体系结构[NHibernate]ISessionFactory配置[NHibernate]持久化类(Persistent Classes)[NHibernate]O/R Mapping基础[NHibernate]集合类(Collections)映射[NHibernat...
分类:移动开发   时间:2014-05-18 02:38:01    阅读次数:394
winform小程序------数字猜大小(经典线程和自动生成控件的小例子)
一:上图二:相关代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using Sys...
分类:编程语言   时间:2014-05-18 01:51:47    阅读次数:407
《转》Unity Android/IOS 多点触摸实例
Unity中获取到的坐标是左下角为(0,0)但是绘画的时候是以左上角为(0,0)所以直接在获取到的坐标上画图是不行的……using UnityEngine;using System.Collections;public class MultiTouch : MonoBehaviour { pub.....
分类:移动开发   时间:2014-05-18 01:16:59    阅读次数:325
主从复制1062错误解决方法
当复制中断的时候,我们常用的方法是跳过错误,比如SET GLOBAL SQL_SLAVE_SKIP_COUNTER =1或者直接slave-skip-errors=1062,这样确实解决了问题,恢复了复制。但是久而久之主从数据相差就很大了。对于复制正常以后,我们还需要使用pt-table-check...
分类:其他好文   时间:2014-05-18 01:10:47    阅读次数:404
C++ PRIMER 第九章
顺序容器:vector list deque顺序容器适配器: stack queue priority_quequ(没见过,第一轮不管)C c; C c(c2); C c(b,e) ///b e 都是迭代器; c(n,t)///只用于顺序容器; C c(n) ///只用于顺序容器const list...
分类:编程语言   时间:2014-05-17 23:43:37    阅读次数:471
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!