---恢复内容开始---priority_queue q;q.top();q.push();q.pop();//////////////////////////////////////////////////////////////////////////////// 查找vec中最长字符串vect...
分类:
编程语言 时间:
2014-11-11 07:02:44
阅读次数:
228
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x onto stack.pop() -- Removes...
分类:
其他好文 时间:
2014-11-10 23:13:29
阅读次数:
277
不必解释了吧,这里代码应该就能说明问题了
#include
#include
#include
using namespace std;
//Queue
template
class Queue
{
public:
void pop(void);
void push(const T& t);
const T& front(void);
bool empty...
分类:
编程语言 时间:
2014-11-10 21:56:46
阅读次数:
391
1 #include "../../st.h" 2 3 int main() 4 { 5 vector nums; 6 double t; 7 int n; 8 cout>n;10 cin>>t;11 nums.push_back(t);12 ...
分类:
编程语言 时间:
2014-11-10 21:41:57
阅读次数:
295
MD ,星期六、星期天在家闲了,今天才抽出空来看第二章,真心该打~不过看了之后,觉得收益蛮多的!看了栅格这篇时,发现一个问题了,以前做自己的网站时,有的时候排版真心有问题,page21这里列排序:.col-md-push-*(*这里填写数字) 完全可以实现的嘛,还用什么float,真心觉的自己傻的不...
分类:
其他好文 时间:
2014-11-10 21:15:29
阅读次数:
235
一共用两个栈。一个用来放数据,另一个专门用来存放当前最小值。 1 class MinStack { 2 public: 3 void push(int x) { 4 elements.push(x); 5 if (mins.empty()||x element...
分类:
其他好文 时间:
2014-11-10 19:45:57
阅读次数:
143
按钮广告(Button) 文件大小:gif:6K/swf:8K 广告尺寸:170*60/120*60像素 广告位置:第一屏?第二屏 备注:触发式LOGO,弹出图片尺寸为160*160?文件大小gif:9K/swf:12K 弹出窗口广告(Pop?up) 文件大小:gif...
分类:
Web程序 时间:
2014-11-10 18:16:12
阅读次数:
233
Min StackDesign a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x onto stack.pop() -...
分类:
其他好文 时间:
2014-11-10 17:11:24
阅读次数:
174
就是用另外一个单调stack来记录最小值就可以了,这个队列单调递减。class MinStack {public: void push(int x) { st.push(x); if (stm.empty() || stm.top() >= x) stm.push(...
分类:
其他好文 时间:
2014-11-10 11:16:35
阅读次数:
157
在STL中heap的用法主要是make_heap(),push_heap(),pop_heap()的用法。具体均在代码中:
// range heap example 用heap构造出来的实际上是一棵树
#include
#include
#include
using namespace std;
int main ()
{
int myints[] = {10,20,30,5,15...
分类:
其他好文 时间:
2014-11-09 16:42:48
阅读次数:
156