码迷,mamicode.com
首页 >  
搜索关键字:oob    ( 485个结果
排序算法之——选择排序
1.算法思想 选择排序,从头至尾扫描序列,找出无序区最小的一个元素,和有序区的最后一个元素比较,如果较小就交换元素,如果相等就不交换元素,接着下一次循环(有序区不断增加,无序区不断往后减少),执行同样的操作,最终得到一个有序序列。 2.C++实现 #include <iostream> using ...
分类:编程语言   时间:2020-11-19 12:46:29    阅读次数:11
排序算法之快速排序
参考:https://www.runoob.com/w3cnote_genre/algorithm 快速排序 从数列中挑出一个元素,称为 "基准"(pivot); 重新排序数列,所有元素比基准值小的摆放在基准前面,所有元素比基准值大的摆在基准的后面(相同的数可以到任一边)。在这个分区退出之后,该基准 ...
分类:编程语言   时间:2020-10-08 18:31:48    阅读次数:24
Python_note_001(Python中的输出函数print、转义字符、原字符)
Python官网:https://www.python.org PyCharm安装:https://www.runoob.com/w3cnote/pycharm-windows-install.html Python中的输出函数print() print()函数输出的内容 1.可以输出数字,如:pr ...
分类:编程语言   时间:2020-09-17 16:11:27    阅读次数:32
php 使用kafka
准备工作 安装librdkafka 库 git clone https://github.com/edenhill/librdkafka.git ./configure make sudo make install 安装php-rdkafka 扩展 $ git clone https://githu ...
分类:Web程序   时间:2020-09-04 17:01:54    阅读次数:69
Canvas 绘画
https://www.runoob.com/html/html5-canvas.html 在线测试: https://www.runoob.com/try/try.php?filename=tryhtml5_canvas_tut_path ...
分类:其他好文   时间:2020-08-17 17:14:01    阅读次数:63
type
数据类型bollean interger float string array object resource NULL callback/callable 输出 echo print print_r var_dump echo输出*arr不输出object语法错误 print同echo print ...
分类:其他好文   时间:2020-07-28 22:38:38    阅读次数:79
测试工作中redis常用命令
redis常用命令 1、SET key1 value1 例:SET runoobkey redis 2、DEL key1 例:DEL runoobkey 3、GET key1 例:GET runoobkey 4、LPUSH key1 value1 例:LPUSH runoobkey redis 向列 ...
分类:其他好文   时间:2020-07-26 00:01:06    阅读次数:66
2020年7月24日 编写FooBizBaz.java
/* 6、从1循环到150并在每行打印一个值, 另外在每个3的倍数行上打印出“foo”,在每个5的倍数行上打印“biz”, 在每个7的倍数行上打印输出“baz”。 */ class Test07_Exer6{ public static void main(String[] args){ //从1循 ...
分类:编程语言   时间:2020-07-24 21:20:51    阅读次数:62
Centos7下快速安装redis
源文件安装 在CentOS和Red Hat系统中,首先添加EPEL仓库,然后更新yum源: sudo yum install epel-release sudo yum update 然后安装Redis数据库: sudo yum -y install redis 安装好后启动Redis服务即可: s ...
分类:其他好文   时间:2020-07-24 15:34:03    阅读次数:67
linux系统下列车所有目录子目录和文件的方法
使用tree命令,列出所有目录的方法:tree -d tree非系统自带命令需要进行安装,安装命令 yum install tree tree命令的说明: https://www.runoob.com/linux/linux-comm-tree.html ...
分类:系统相关   时间:2020-07-20 13:27:33    阅读次数:112
485条   上一页 1 2 3 4 5 ... 49 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!