码迷,mamicode.com
首页 >  
搜索关键字:single    ( 5020个结果
Javascript教程:js异步编程的4种方法详述(转载)
文章收集转载于(阮一峰的网络日志)你可能知道,Javascript语言的执行环境是“单线程”(single thread)。所谓“单线程”,就是指一次只能完成一件任务。如果有多个任务,就必须排队,前面一个任务完成,再执行后面一个任务,以此类推。这种模式的好处是实现起来比较简单,执行环境相对单纯;坏处...
分类:编程语言   时间:2014-08-10 23:48:40    阅读次数:357
Linux的进程(一)
启动的配置文件/etc/inittab,修改完配置文件以后 init q立即生效# Default runlevel. The runlevels used by RHS are:# 0 - halt (Do NOT set initdefault to this)# 1 - Single ...
分类:系统相关   时间:2014-08-10 18:26:10    阅读次数:256
【leetcode】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 digit. Add the two numbers and return it as a linked list. Input: (2 -> 4 -> 3) + (5 -> 6 -> 4) Outpu...
分类:其他好文   时间:2014-08-10 13:08:30    阅读次数:296
面向对象的5个基本设计原则
面向对象的3个基本要素:封装、继承、多态面向对象的5个基本设计原则:单一职责原则(Single-Resposibility Principle) 其核心思想为:一个类,最好仅仅做一件事,仅仅有一个引起它的变化。单一职责原则能够看做是低耦合、高内聚在面向对象原则上的引申,将职责定义为引起变化的原因,以...
分类:其他好文   时间:2014-08-09 23:02:09    阅读次数:262
Cracking the Coding Interview Q3.1
Describe how you could use a single array to implement three stacks.思路1:fixed divisionpackage Question3_1;import java.util.EmptyStackException;public ...
分类:其他好文   时间:2014-08-09 22:59:29    阅读次数:401
相克军_Oracle体系_随堂笔记013-字符集
linux环境下:[root@single ~]# localeLANG=en_US.UTF-8LC_CTYPE="en_US.UTF-8"……windows环境下:C:\Users\Martin>chcp活动代码页: 936字符集其实就是“字符”和“编码”的一张对照表,数据库安装过程中,会选择确认...
分类:数据库   时间:2014-08-09 18:15:28    阅读次数:329
[leetcode]Regular Expression Matching
Regular Expression MatchingImplement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more o...
分类:其他好文   时间:2014-08-08 17:59:16    阅读次数:173
[leetcode]Single Number II
Single Number IIGiven an array of integers, every element appearsthreetimes except for one. Find that single one.Note:Your algorithm should have a lin...
分类:其他好文   时间:2014-08-07 23:00:14    阅读次数:275
不用数据绑定控件的数据更新
if(action=="updata"){int id=Convert.ToInt32(Request["Id"]); //取得要修改的Idvar newRow = new T_UserTableAdapter().GetDataById(id).Single(); //获取单条等于这个Id的数据....
分类:其他好文   时间:2014-08-07 18:51:30    阅读次数:213
测试CPU支持指令集AVX,AVX2,SSE情况的代码【VS2010调试通过】
Intel® Advanced Vector Extensions (Intel® AVX) is a set of instructions for doing Single Instruction Multiple Data (SIMD) operations on Intel® architecture CPUs. These instructions extend previous SIM...
分类:其他好文   时间:2014-08-07 00:51:07    阅读次数:995
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!