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 the element on top of the stack.top() -- Get...
分类:
其他好文 时间:
2014-12-08 23:10:51
阅读次数:
400
STL源码剖析—序列容器
对于STL中的容器,存在一定的内含关系,例如,heap内含一个vector,priority-queue内含一个hep,stack和queue都含有一个deque,set/map/multiset/multimap都内含一个RB-tree,hash_x都内含一个hashtable。
对于序列容器来说,vector和list的插入都是在指向迭代器之前进...
分类:
其他好文 时间:
2014-12-08 23:03:18
阅读次数:
273
本程序引入了unity3d的程序,那么自然就使用到了jar包unity-class.jar这个jar包。在混淆的时候出现下列问题:
首先第一个问题:
java.io.IOException: Can't read [unity-classes.jar] (Can't process class [com/unity3d/player/UnityPlayer.class] (Unknown verification type [191] in stack map frame))...
分类:
移动开发 时间:
2014-12-08 21:34:10
阅读次数:
1228
EBS通过adpatch打补丁报错
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/32/libgcc_s.so: undefined reference to `__stack_chk_fail@GLIBC_2.4'
collect2: ld returned 1 exit status
make: *** [/soft/ebs12/ERPDB/apps/ap...
分类:
其他好文 时间:
2014-12-08 10:48:25
阅读次数:
420
Stack 从名字中可以看得出来意思是栈,栈的特点就是先进后出,FILO.具体使用看下面的代码:#include #include using namespace std;int main(){stack sc;for(int i = 0; i < 10l; ++i)sc.push(i);while...
分类:
其他好文 时间:
2014-12-07 06:27:10
阅读次数:
217
题目链接:点击打开链接
题意:
消除字符串游戏,选择一个字母,则会消除和该字母相同且连续的一段,然后左右两边合拢,若左右两边字母相同则再次消除掉。直到合拢时两边字母不相同。
问这样连续消除的最大次数。
思路:
先把连续相同的字母当成一个字母,然后求最长回文串,
则答案就是(最长长度+1)/;2
#pragma comment(linker, "/STACK:1024000000,10...
分类:
其他好文 时间:
2014-12-07 01:25:31
阅读次数:
207
Stack 从名字中可以看得出来意思是栈,
栈的特点就是先进后出,FILO.
具体使用看下面的代码:
#include
#include
using namespace std;
int main()
{
stack sc;
for(int i = 0; i
sc.push(i);
while( !sc.empty())
{
cout
sc.pop();
...
分类:
其他好文 时间:
2014-12-07 01:25:07
阅读次数:
211
myStack。h
#pragma once
//typedef int TYPE;
template
class myStack
{
TYPE* m_pData;//用new在堆上动态建立
int m_nTop;
int m_nCount;
public:
bool isFull()
{
return m_nTop+1 >= m_nCount;
...
分类:
编程语言 时间:
2014-12-06 18:16:51
阅读次数:
248
// Stack.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include
using namespace std;
enum{COUNT = 8};
typedef int TYPE;
class CStack
{
TYPE m_pData[COUNT];
int m_nTop;
int m_nCount;...
分类:
编程语言 时间:
2014-12-06 16:56:04
阅读次数:
215
package tree.binarytree;
import java.util.Stack;
/**
* 二叉树后序遍历的递归与非递归实现
*
* @author wl
*
*/
public class BitreePostOrder {
// 后序遍历的递归实现
public static void biTreePostOrderByRecursion(BiTreeN...
分类:
编程语言 时间:
2014-12-06 08:55:25
阅读次数:
283