码迷,mamicode.com
首页 >  
搜索关键字:stack overflow    ( 13605个结果
css动画之波纹
样式定义:#ContactAbout { height: auto; position: relative; overflow: hidden; }#sectioncontact { display: block; width: 100%; position: relative; height: 7...
分类:Web程序   时间:2014-05-27 01:32:15    阅读次数:415
网站开发人员应该知道的61件事
作者 Hoogle, 火龙果软件 发布于:2014-01-23有人在Stack Overflow上发问,动手开发网站之前,需要知道哪些事情?不出意料地,他得到了一大堆回答。通常情况下,你需要把所有人的发言从头到尾读一遍。但是,Stack Overflow有一个很贴心的设计,它允许在问题下方开设一个w...
分类:Web程序   时间:2014-05-24 06:41:46    阅读次数:448
2014年百度之星资格赛第二题Disk Schedule
其实我觉得这题可以用费用流的,可是光建图就超时了。。。不科学啊。。。因为边太多了,不然一定能过的,最后想啊想,还是用dp吧。。。。 居然想到一种一维dp。。。。我也不知道我怎么想的,反正就是ac了 //#pragma comment(linker, "/STACK:102400000,102400000") #include #include #include #include #includ...
分类:其他好文   时间:2014-05-22 13:20:14    阅读次数:286
zoj 3210 A Stack or A Queue? (数据结构水题)
?? A Stack or A Queue? Time Limit: 1 Second      Memory Limit: 32768 KB Do you know stack and queue? They're both important data structures. A stack is a "first in last out" (FILO) data ...
分类:其他好文   时间:2014-05-22 12:24:38    阅读次数:236
2.设计包含 min 函数的栈
Stack with min value.
分类:其他好文   时间:2014-05-22 05:05:42    阅读次数:261
39.递归颠倒栈
Reverse a stack.
分类:其他好文   时间:2014-05-22 01:24:22    阅读次数:275
Classic Abstract Data Types--C
本文内容来自《pointers on C》栈的接口/* Interface for a stack module */#define STACK_TYPE intvoid push(STACK_TYPE value);void pop(void);STACK_TYPE top(void);in...
分类:其他好文   时间:2014-05-18 20:37:48    阅读次数:509
C++与数据结构 -- stack实现表达式求值[注释版]
有好多朋友评论以前的那篇博文说:代码中间没有注释。由于课程一直比较紧张,所以答应的注释直到今天才写,发表出来,给大家共享!#include #include #include #include #include using namespace std; //为+,-,*,/运算符 设定优先级 map priority; void initMap() { //+,-运算符的优先级...
分类:编程语言   时间:2014-05-18 07:35:21    阅读次数:290
51系列小型操作系统精髓 简单实现4
#include #define MAX_TASKS 2 //任务槽个数.必须和实际任务数一至 #define MAX_TASK_DEP 12 //最大栈深.最低不得少于2 个,保守值为12. unsigned char idata task_stack[MAX_TASKS][MAX_TASK_DEP];//任务堆栈. unsigned char idata task_sp[MA...
分类:其他好文   时间:2014-05-18 05:12:43    阅读次数:339
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
迷上了代码!