码迷,mamicode.com
首页 >  
搜索关键字:stack    ( 9691个结果
Codeforces Global Round 8 D - AND, OR and square sum 尽量往大的数字上移动
#include<map> #include<queue> #include<time.h> #include<limits.h> #include<cmath> #include<ostream> #include<iterator> #include<set> #include<stack> # ...
分类:移动开发   时间:2020-06-21 14:06:53    阅读次数:54
Codeforces Round #651 (Div. 2) D - Odd-Even Subsequence 二分
#include<map> #include<queue> #include<time.h> #include<limits.h> #include<cmath> #include<ostream> #include<iterator> #include<set> #include<stack> # ...
分类:其他好文   时间:2020-06-21 14:04:53    阅读次数:64
Codeforces Global Round 8 B - Codeforces Subsequences 构造
#include<map> #include<queue> #include<time.h> #include<limits.h> #include<cmath> #include<ostream> #include<iterator> #include<set> #include<stack> # ...
分类:其他好文   时间:2020-06-21 13:44:09    阅读次数:80
Codeforces Round #651 (Div. 2) C - Number Game 博弈
#include<map> #include<queue> #include<time.h> #include<limits.h> #include<cmath> #include<ostream> #include<iterator> #include<set> #include<stack> # ...
分类:其他好文   时间:2020-06-21 13:34:23    阅读次数:64
C++优先级队列priority_queue的排序规则
1.写在前面: queue, stack, priority_queue 都是顺序容器适配器,底层使用vector, deque,list实现。 stack所关联的基础容器vector或deque或 list queue所关联的基础容器是list prority_queue 所关联的基础容器是vec ...
分类:编程语言   时间:2020-06-21 10:13:38    阅读次数:183
深度优先遍历
就是dfs,有个好听的名字叫回溯,其实就是穷举法,这种算法的时机复杂度为n^level ,效率还是很低的 import java.util.Stack; public class DFSTest { public static void main(String[] args) { char[] p ...
分类:其他好文   时间:2020-06-21 09:48:15    阅读次数:45
设计模式之解释器模式
from abc import ABCMeta, abstractmethod # 解释器模式:定义一个语言,定义它的文法的一种表示;并定义一个编辑器,该解释器使用文法来解释语言中的文法 class Expression(metaclass=ABCMeta): """抽象表达式""" @abstra ...
分类:其他好文   时间:2020-06-20 23:58:52    阅读次数:82
容器总结
容器总结(不是详解) - List ArrayList LinkedList Vector Stack CopyOnWriteArrayList - Set HashSet TreeSet LinkedHashSet ConcurrentSkipListSet - Map HashMap Linke ...
分类:其他好文   时间:2020-06-20 18:57:50    阅读次数:52
数据结构之栈
1.栈的一个实际需求 请问: 计算机底层是如何运算得到结果的? 注意不是简单的把算式列出运算,因为我们看这个算式 7 * 2 * 2 - 5, 但是计算机怎么理解这个算式的(对计算机而言,它接收到的就是一个字符串),我们讨论的是这个问题。-> 栈 2.栈的介绍 1)栈的英文为(stack) 2)栈是 ...
分类:其他好文   时间:2020-06-20 18:39:53    阅读次数:40
leetcode——1028.从先序遍历还原二叉树
public TreeNode recoverFromPreorder(String S) { Stack<TreeNode> path = new Stack<>(); //构建好栈 //定义一个变量来遍历S int i = 0; //定义一个int变量来确定节点的层数 //先将S转换成char[ ...
分类:其他好文   时间:2020-06-20 18:21:29    阅读次数:42
9691条   上一页 1 ... 38 39 40 41 42 ... 970 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!