


This article mainly introduces the member ranking function of PHP based on doubly linked lists and sorting operations. It analyzes the functions and definitions of PHP doubly linked lists and related implementation skills of doubly linked lists based on sorting operations in the form of examples. Friends in need can refer to Next
The example in this article describes the member ranking function implemented by PHP based on doubly linked lists and sorting operations. Share it with everyone for your reference. The details are as follows:
A two-way linked list is also called a double linked list. It is a type of linked list. Each of its data nodes has two pointers, pointing to the direct successor and the direct predecessor. . Therefore, starting from any node in the doubly linked list, you can easily access its predecessor nodes and successor nodes. If you don’t know the concept, please search it yourself.
<?php /** * 双向链表实现用户排行榜 * * 仅用于体现思想逻辑,不具备实际参考价值 * @author 疯狂老司机 * @date 2016-07-07 */ class Rank{ /** * @var 指向前一个节点的引用 */ public $pre = null; /** * @var 指向后一个节点的引用 */ public $next = null; /** * @var 用户排行id */ public $id; /** * @var 用户名称 */ public $username; public function __construct($id = '', $username = ''){ $this->id = $id; $this->username = $username; } /** * 添加成员节点方法 * * @access public * @param obj head 初始节点 * @param obj rank 成员节点 */ public static function addRank($head, $rank){ $cur = $head; // 辅助节点 $isExist = false; //这是一个标志位 while($cur->next != null){ if($cur->next->id > $rank->id){ break; }else if($cur->next->id == $rank->id){ $isExist = true; echo'<br/>不能添加相同的id'; } $cur = $cur->next; } if(!$isExist){ if($cur->next != null){ $rank->next = $cur->next; } $rank->pre = $cur; if($cur->next != null){ $cur->next->pre = $rank; } $cur->next = $rank; } } /** * 删除成员节点方法 * * @access public * @param obj head 初始节点 * @param obj rankid 用户排行id */ public static function delRank($head, $rankid){ $cur = $head->next; $isFind = flase; // 标记位 while($cur != null){ if($cur->id == $rankid){ $isFind = true; break; } $cur = $cur->next; } if($isFind){ if($cur->next != null){ $cur->next->pre = $cur->pre; } $cur->pre->next = $cur->next; echo '<br/>要删除的成员id是'.$cur->id; }else{ echo'<br/>要删除的成员没有'; } } /** * 遍历所有节点并输出显示 * * @access public * @param obj head 初始节点 */ public static function showRank($head){ $cur = $head->next; // 不打印空节点 while($cur->next != null){ echo'<br/>id='.$cur->id.' '.'username='.$cur->username; $cur = $cur->next; } echo'<br/>id='.$cur->id.' '.'username='.$cur->username; } } //创建一个初始节点 $head=new Rank(); //创建一个成员 $rank=new Rank(1,'老王'); Rank::addRank($head,$rank); $rank=new Rank(2,'小明'); Rank::addRank($head,$rank); $rank=new Rank(6,'大熊'); Rank::addRank($head,$rank); $rank=new Rank(3,'静香'); Rank::addRank($head,$rank); $rank=new Rank(56,'孙二娘'); Rank::addRank($head,$rank); echo '<br/>成员排行榜.....'; Rank::showRank($head); echo'<br/>'; echo '<br/>删除后的成员排行榜.....'; Rank::delRank($head,3); Rank::showRank($head); echo'<br/>'; echo'<br/>下面测试删除最前面的和最后面的成员<br/>'; echo '<br/>删除后的成员排行榜.....'; Rank::delRank($head,1); Rank::showRank($head); echo'<br/>'; echo '<br/>删除后的成员排行榜.....'; Rank::delRank($head,56); Rank::showRank($head); ?>
Run result:
成员排行榜..... id=1 username=老王 id=2 username=小明 id=3 username=静香 id=6 username=大熊 id=56 username=孙二娘 删除后的成员排行榜..... 要删除的成员id是3 id=1 username=老王 id=2 username=小明 id=6 username=大熊 id=56 username=孙二娘 下面测试删除最前面的和最后面的成员 删除后的成员排行榜..... 要删除的成员id是1 id=2 username=小明 id=6 username=大熊 id=56 username=孙二娘 删除后的成员排行榜..... 要删除的成员id是56 id=2 username=小明 id=6 username=大熊
Articles you may be interested in:
php Get ajax headers method and content example explanation
The most basic operation tutorial of using Queue in Laravel
The above is the detailed content of Detailed explanation of the example of member ranking function implemented by PHP based on doubly linked list and sorting operation. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),