码迷,mamicode.com
首页 >  
搜索关键字:front    ( 2274个结果
数据结构之队列定义及基本操作实现
数据结构学着就是有意思,真诚推荐郝斌老师的数据结构视频,真的讲解的非常详细,容易理解。 一直在跟着郝斌老师的数据结构视频学习,看完了队列的视频,记录下来,总结一下。 队列的定义:队列是一种特殊的线性表,只允许在表的头部(front处)进行删除操作,在表的尾部(rear处)进行插入操作的线性数...
分类:其他好文   时间:2015-11-02 17:12:58    阅读次数:228
基本数据结构,循环队列的顺序实现。
队列是一种先进先出的数据结构,这里用顺序结构将其实现。1.首先用结构体定义一个队列,front指向队首元素的前面一位,real指向队尾元素。1 //队列的结构定义2 #define MAX 63 typedef struct {4 int front,real;5 int data[...
分类:其他好文   时间:2015-10-30 12:01:37    阅读次数:526
zoj 3629 Treasure Hunt IV(找规律)
Alice is exploring the wonderland, suddenly she fell into a hole, when she woke up, she found there areb - a+ 1 treasures labledafrombin front of her....
分类:其他好文   时间:2015-10-27 15:01:57    阅读次数:176
(备忘)android模拟器摄像头模拟
Camera分Front Camera和Back Camera通常我们模拟后摄像头就可以了三个选项none:表示没有摄像头,打开摄像应用会崩溃emulated:系统模拟一个动态的画面--在黑白格背景上随机移动的矩形色块Webcam:如果电脑有摄像头的话,那么模拟器就会使用这个摄像头来作为其摄像头
分类:移动开发   时间:2015-10-24 01:32:45    阅读次数:1075
ruby当中的字符串处理%Q, %q, %W, %w, %x, %r, %s 的用法
%QThis is an alternative for double-quoted strings, when you have more quote characters in a string.Instead of putting backslashes in front of them, y...
分类:其他好文   时间:2015-10-20 21:06:23    阅读次数:139
Level shifting a +/- 2.5V signal to 0 - 5V
Google :Op-Amp Level ShifterLevel shifting a +/- 2.5V signal to 0 - 5VI have a front end module that generates an (ECG) signal that varies from +/-2.5...
分类:其他好文   时间:2015-10-20 01:25:31    阅读次数:509
DXDI section ----- SwapChain
SwapChain主要负责维护几个表面(图像)的集合,当显示器在展示当前帧时,Directx在后台绘制下一帧。Front buffer和back buffer合称SwapChain,在Directx11中它接口是IDXGISwapChain。最常用的函数是IDXGISwapChain::Presen...
分类:其他好文   时间:2015-10-14 21:21:41    阅读次数:121
In or out?
原文 Our dog, Rex, used to sit outside out front gate and bark. Every time he wanted to come into the garden he would bark until someone opened the gate. As the neighbors complained of the noise, m...
分类:其他好文   时间:2015-10-09 14:01:39    阅读次数:167
web FG interview all
原文:http://www.nowcoder.com/ta/front-end-interview整理得到(1)请你谈谈Cookie的弊端cookie虽然在持久保存客户端数据提供了方便,分担了服务器存储的负担,但还是有很多局限性的。第一:每个特定的域名下最多生成20个cookie1.IE6或更低版本...
分类:Web程序   时间:2015-10-08 13:08:18    阅读次数:198
css3 online generate tools
link:http://www.w3cplus.com/source/front-end-developer-excellent-tool.html随着CSS3的出现,CSS3讨论的话题越来越多了,现在各种教程也是多如牛毛,不比一年前的时候,找个资料要捞遍整个互联网,而且还很难找到自己 需要的参考资...
分类:Web程序   时间:2015-10-08 00:19:18    阅读次数:231
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!