码迷,mamicode.com
首页 >  
搜索关键字:tasks and back stack    ( 26134个结果
Trees on the level UVA - 122
Trees are fundamental in many branches of computer science (Pun definitely intended). Current stateof-the art parallel computers such as Thinking Mach ...
分类:其他好文   时间:2021-02-08 12:29:55    阅读次数:0
栈Stack(自定义栈)
1、什么是栈 栈也是一种线性结构, 相比数组,栈对应的操作是数组的子集 只能从一端添加元素,也只能从一端取出元素 这一端称为栈顶 栈是一种后进先出的数据结构。 2、栈的应用 1) 编辑器无处不在的Undo操作(撤销) 2) 程序调用的系统栈 函数A中调用函数B,函数B中调用函数C。 如果C函数执行完 ...
分类:其他好文   时间:2021-02-08 12:24:23    阅读次数:0
ElementUI 点击展开/隐藏
一、概述 在项目,需要使用一个功能,点击某个按钮,展开/隐藏 某些说明文字。 二、项目演示 新建一个vue项目,安装ElementUI 模块即可。 新建test.vue <template> <div style="width: 70%;margin-left: 30px;margin-top: 3 ...
分类:其他好文   时间:2021-02-08 12:11:26    阅读次数:0
15. 三数之和
class Solution { public: vector<vector<int>> threeSum(vector<int>& nums) { int n=nums.size(); vector<vector<int>>ans; if(n<3) return{}; sort(nums.begi ...
分类:其他好文   时间:2021-02-08 11:52:34    阅读次数:0
数据结构:2.6 栈的顺序存储和链式存储
栈的顺序存储 #define MaxSize 1000 typedef struct SNode *Stack; struct SNode { ElementType Data[MaxSize]; int Top; }; //入栈 void Push( Stack PtrS, ElementType ...
分类:其他好文   时间:2021-02-06 11:59:33    阅读次数:0
python--导入,模块的引用,包,__name__
__name__ 创建一个py文件,命名为 demo1.py,写下面一行代码 print(__name__) 执行 从当前文件下运行,__name__就是__main__ 在创建一个文件为demo2.py,导入demo1,运行demo2.py 从demo2.py 里导入 demo1,__name__ ...
分类:编程语言   时间:2021-02-05 10:54:32    阅读次数:0
c++学习草稿
循环 1 #include<iostream> 2 3 using namespace std; 4 int main() 5 { 6 int my_array[] = { 1,2,3,4,5,6,7,8 }; 7 // 不会改变 my_array 数组中元素的值 8 // x 将使用 my_arr ...
分类:编程语言   时间:2021-02-04 11:44:06    阅读次数:0
wget: unable to resolve host address ‘dl.grafana.com’的解决方法
[root@Server-qnrsyp system]# wget --no-check-certificate https://dl.grafana.com/oss/release/grafana_7.3.7_amd64.deb --2021-02-02 00:21:25-- https://dl ...
分类:其他好文   时间:2021-02-02 11:34:53    阅读次数:0
Oracle数据库基本操作
一、Oracle数据库操作 1、创建数据库 create database databasename 2、删除数据库 drop database dbname 3、备份数据库 完全备份 exp demo/demo@orcl buffer=1024 file=d:\back.dmp full=y de ...
分类:数据库   时间:2021-02-02 11:29:38    阅读次数:0
Unix ls UVA - 400
The computer company you work for is introducing a brand new computer line and is developing a new Unix-like operating system to be introduced along w ...
分类:其他好文   时间:2021-02-01 12:53:22    阅读次数:0
26134条   上一页 1 ... 29 30 31 32 33 ... 2614 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!