码迷,mamicode.com
首页 >  
搜索关键字:front    ( 2274个结果
[LeetCode][JavaScript]Shortest Palindrome
Shortest PalindromeGiven a string S, you are allowed to convert it to a palindrome by adding characters in front of it. Find and return the shortest p...
分类:编程语言   时间:2015-05-24 00:06:34    阅读次数:375
深刻剖析VuGen脚本录制原理
扩展:深刻剖析VuGen脚本录制原理 LR中的VuGen组件,主要扮演一个proxy server的角色,在录制脚本时,记录下用户和服务器交互,然后自动生成脚本语言。在接下来的重放,或者大批量地加压时,模拟真实的front end user向网站发送请求,并根据服务器返回的结果,作为判断是否正确执行...
分类:其他好文   时间:2015-05-22 21:09:39    阅读次数:133
Front-End 大杂烩
HTML5 ---> Templating Languages: Dustjs, EJS 为什么要用templateCSS: less --->javascript 编译 sass ---> ruby 编译Javascript: backend: expressjs, krakenjs, ...
分类:其他好文   时间:2015-05-22 13:15:30    阅读次数:151
数据结构之---C语言实现循环队列
//循环队列 //杨鑫 #include #include #define MAXSIZE 10 typedef int QElemType; typedef struct queue { QElemType elem[MAXSIZE]; int front; int rear; }SqQueue; //定义队头 int init_Queue(SqQueue *...
分类:编程语言   时间:2015-05-21 12:45:39    阅读次数:165
UVA 11729 Commando War
题目链接:Commando War 题面: “Waiting for orders we held in the wood, word from the front never came By evening the sound of the gunfire was miles away Ah softly we moved through the shadows, slip aw...
分类:其他好文   时间:2015-05-21 09:15:54    阅读次数:149
数据结构之---C语言实现链式队列
//链式队列的存储 //杨鑫 #include #include typedef int QElemType; //定义节点 typedef struct QNode { QElemType data; struct QNode *next; }QNode, *QueuePtr; //定义指针 typedef struct { QueuePtr front; QueuePtr ...
分类:编程语言   时间:2015-05-19 22:45:34    阅读次数:178
循环队列
什么是队列?队列(Queue)也是一种运算受限的线性表。它仅仅同意在表的一端进行插入,而在还有一端进行删除。同意删除的一端称为队头(front),同意插入的一端称为队尾(rear)。FIFO原则队列具有先进先出原则,与栈的先进后出形成对照。为什么设计循环队列?队列的顺序存储结构称为顺序队列,顺序队列...
分类:其他好文   时间:2015-05-19 20:33:17    阅读次数:107
12108 - Extraordinarily Tired Students
When a student is too tired, he can't help sleeping in class, even if his favorite teacher is right here in front of him. Imagine you have a class of ...
分类:其他好文   时间:2015-05-19 16:20:56    阅读次数:194
LightOJ1027---A Dangerous Maze (期望)
You are in a maze; seeing n doors in front of you in beginning. You can choose any door you like. The probability for choosing a door is equal for all doors.If you choose the ith door, it can either ta...
分类:其他好文   时间:2015-05-17 16:49:18    阅读次数:118
前端技术之CSS实现图片垂直居中
前端技术之CSS实现图片垂直居中技术 maybe yes 发表于2015-03-14 18:52 原文链接 : http://blog.lmlphp.com/archives/86/The_front-end_technology_pure_CSS_to_achieve_image_vertically ?来自 : LMLPHP后院 让...
分类:Web程序   时间:2015-05-15 22:58:37    阅读次数:396
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!