码迷,mamicode.com
首页 >  
搜索关键字:step    ( 4105个结果
十大经典排序之归并排序(C++实现)
#归并排序 思路:(分而治之的思想) 1.申请空间,使其大小为两个已经排序序列之和,该空间用来存放合并后的序列; 2.设定两个指针,最初位置分别为两个已经排序序列的起始位置; 3.比较两个指针所指向的元素,选择相对小的元素放入到合并空间,并移动指针到下一位置; 4.重复步骤 3 直到某一指针达到序列 ...
分类:编程语言   时间:2021-04-15 12:38:31    阅读次数:0
linux 挂载硬盘扩容的2种方法
linux 挂载硬盘扩容的2种方法 张映 发表于 2015-12-30 分类目录: linux 标签:linux, lvm, 扩容, 硬盘 硬盘快满了,加硬盘扩容,不管是独立的服务器,还是云空间新买的硬盘,扩容方式一样。下面以阿里VPS为例,详细说一下,挂载硬盘扩容的2种方法。 阿里VPS,个人觉得 ...
分类:系统相关   时间:2021-04-15 12:20:29    阅读次数:0
range \random
### range(start,stop ,step) - 按循序生成整数 #生成整数,参数可是负值,STEP可以是负值,参数可以只是一个整数 for item in range(0,10,2): print(item) 结果: 0 2 4 6 8 列2: for item in range(10) ...
分类:其他好文   时间:2021-04-14 12:16:21    阅读次数:0
Full Binary Tree
题目来源 Full Binary Tree Description In computer science,a binary tree is a tree data structure in which each node has at most two children. Consider an ...
分类:其他好文   时间:2021-04-13 12:02:15    阅读次数:0
ISlide插件安装后,PPT无法正常关闭
现象:安装ISlide插件后,关闭最后一个PPT窗口口,PPT程序没有完全退出,只能利用任务管理器强制退出。 环境:Win 10 + PPT2019 + ISlide 6.2.0.2 解决办法: Step 1:进入cmd。Win + R 快捷键进入cmd; Step 2:进入ISlide安装目录,默 ...
分类:其他好文   时间:2021-04-12 12:09:19    阅读次数:0
2021-2022学年英语周报八年级第25期答案及试题
进入查看:2021-2022学年英语周报八年级第25期答案及试题 It is never too old to learn.活到老,学到老。It is no use crying over spilt milk.覆水难收。It is the first step that costs trouble ...
分类:其他好文   时间:2021-04-10 13:19:01    阅读次数:0
idea 快捷键
debug调试快捷键F9 resume programe 恢复程序Alt+F10 show execution point 显示执行断点F8 Step Over 相当于eclipse的f6 跳到下一步F7 Step Into 相当于eclipse的f5就是 进入到代码Alt+shift+F7 For ...
分类:其他好文   时间:2021-04-05 12:05:32    阅读次数:0
tarjan算法
求强连通/割点/桥 step1 将图深搜,形成深搜树,按遍历顺序标号->dfn[i] step2 将low[i]初始化为dfn[i] step3 回溯时low[i]=min(low[i],low[i的儿子]) 判断 DFN[]作为这个点搜索的次序编号(时间戳) LOW[]作为每个点在这颗树中的,子树 ...
分类:编程语言   时间:2021-03-16 11:48:55    阅读次数:0
1332. Remove Palindromic Subsequences (E)
Remove Palindromic Subsequences (E) 题目 Given a string s consisting only of letters 'a' and 'b'. In a single step you can remove one palindromic subseq ...
分类:其他好文   时间:2021-03-09 13:26:40    阅读次数:0
How To Install MediaWiki on Ubuntu 18.04 LTS
Step 1 — Installing Apache and Updating the Firewall Adjust the Firewall to Allow Web Traffic sudo apt update sudo apt upgrade sudo apt install apache ...
分类:系统相关   时间:2021-03-06 14:52:16    阅读次数:0
4105条   上一页 1 2 3 4 5 ... 411 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!