上学时,排序几乎是考试必须要出现的,反而工作以后正经没用过排序,时间久了已经忘了排序有几种方法了。 下面就在复习一下用PHP排序 $number = array(5,8,3,7,4,6,2,9,1); 一、冒泡法:冒泡法其实原理很简单,就像一群人土匪选当家的,5跟8比,5打不过8,不换位置,8跟3比 ...
分类:
编程语言 时间:
2021-03-12 13:28:42
阅读次数:
0
https://blog.csdn.net/qq_35140728/article/details/77248281 1.到http://www.igniterealtime.org/projects/openfire/plugins.jsp下载一个插件REST API。这个插件的作用就是允许程序设 ...
分类:
Web程序 时间:
2021-03-12 12:32:39
阅读次数:
0
线上PHP环境的安装一般使用编译的方式,但是需要手动一个一个安装,这次使用yum来进行安装 1.安装EPEL源 rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 或者 yum install ...
分类:
Web程序 时间:
2021-03-11 20:48:12
阅读次数:
0
C++ SDL2配置 参考视频教程https://www.bilibili.com/video/BV1gs411X7zz?p=1 下载SDL2地址:http://www.libsdl.org/download-2.0.php中下载开发库,我这里下载的是vc版的。 新建一个控制台的项目。将加压后的in ...
分类:
编程语言 时间:
2021-03-11 18:19:55
阅读次数:
0
html构造表单 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <form method="post" action="upload_file.php" enctype="mul ...
分类:
Web程序 时间:
2021-03-11 10:30:42
阅读次数:
0
Reverse Linked List II 反转链表 Given the head of a singly linked list and two integers left and right where left <= right, reverse the nodes of the list ...
分类:
编程语言 时间:
2021-03-10 13:27:14
阅读次数:
0
http://www.pipioj.online/problem.php?id=1026 1 #define IO std::ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); 2 #define bug(x) cout<<#x<<" is "<<x<<e ...
分类:
其他好文 时间:
2021-03-10 13:26:07
阅读次数:
0
博客介绍: 本文是对大二上学期通过学习过数据结构,时间复杂度,等只是后对曾经学习过的简单运算逻辑,算法进行优化。本人的编程能力有限,仅在基础之上作出浅薄的修改。 (一)、避免不必要的整数除法 整数除法是整数运算中最慢的,所以应该尽可能避免。一种可能减少整数除法的地方是连除,这里除法可以由乘法代替。这 ...
分类:
其他好文 时间:
2021-03-10 13:23:11
阅读次数:
0
open_basedir将网站限定在指定的目录,做目录的隔离 先在php.ini中设置open_basedir: # vim /usr/local/php/etc/php.ini //搜索open_basedir,改成如下 open_basedir = /usr/local/apache2.4/do ...
分类:
Web程序 时间:
2021-03-10 13:11:22
阅读次数:
0
MySQL 1. 数据库简单操作 经常使用PHP脚本来操作数据库 从cmd连接mysql服务器 mysql -u root -p use 命令选择数据库 use RUNOOB; create 命令创建数据库 CREATE DATABASE 数据库名; create DATABASE RUNOOB; ...
分类:
数据库 时间:
2021-03-09 13:44:55
阅读次数:
0