主要原因:
目前在学习PHP的过程,想考验一下自己制作一个足球比赛单循环的赛程表出来。
算法:
*算法
把队伍排列成2行(偶数队伍),固定第一行的第一个队伍,从第一行第二个队伍开始顺时针滚动。
但我在写代码的时候怎么也写不出来(可能是我也刚接触)
我所设想的写法应该是:
3层for循环,第一层是轮次,第二层是主队,第三层是客队。
进行for echo展示赛程表。
下面代码是我自己在研究过程中写出来的,跟我要的结果完全不一样啊,不知道怎么写了,希望PHP大牛帮忙!
<?php $team = array('武汉','广州','北京','上海','四川','香港','台湾'); //var_dump($team); $max = count($team); //var_dump($max); $teammax = $max - 1 ; for ($i=0;$i<$max;$i++) { for ($o=0;$o<=$teammax;$o++) { if ($i == $o) { continue; } else { echo $team[$i] . ' vs ' . $team[$o]; if ($o == $teammax){ echo "<hr>"; } else{ echo "<br/>"; } } } }?>
<?php $team = array('1','2','3','4','5','6','7','8'); $max = count($team); //var_dump($max); $lunci = $max - 1; //var_dump($lunci); for ($i=0;$i<$lunci;$i++) { echo $team[$w] .' vs ' . $team[$b-$i]; echo '<br/>'; }?>
回复讨论(解决方案)
你这是求 7 中取 2 的组合
按求组合的通用算法即可(精华区有相关代码)
规则看不太懂 能给个结果实例要你想要的结果展示出来吗 这样别人才能更好的知道你想要的结果是什么
自己研究的话,可以这样写
$team = array('武汉','广州','北京','上海','四川','香港','台湾');$max = count($team);$teammax = $max - 1 ;for ($i=0;$i<$max;$i++) { for ($o=$i+1;$o<=$teammax;$o++) { if ($i == $o) { continue; }else { echo $team[$i] . ' vs ' . $team[$o]; if ($o == $teammax){ echo "<hr>"; } else{ echo "<br/>"; } } }}武汉 vs 广州
武汉 vs 北京
武汉 vs 上海
武汉 vs 四川
武汉 vs 香港
武汉 vs 台湾
--------------------------------------------------------------------------------
广州 vs 北京
广州 vs 上海
广州 vs 四川
广州 vs 香港
广州 vs 台湾
--------------------------------------------------------------------------------
北京 vs 上海
北京 vs 四川
北京 vs 香港
北京 vs 台湾
--------------------------------------------------------------------------------
上海 vs 四川
上海 vs 香港
上海 vs 台湾
--------------------------------------------------------------------------------
四川 vs 香港
四川 vs 台湾
--------------------------------------------------------------------------------
香港 vs 台湾
--------------------------------------------------------------------------------
规则看不太懂 能给个结果实例要你想要的结果展示出来吗 这样别人才能更好的知道你想要的结果是什么
实力结果应该是
第一轮
也就是把
1234
5678
上下对阵
1523
6784
1652
7843
形成罗盘算法的运转(固定1 转动2~8)
自己研究的话,可以这样写
$team = array('武汉','广州','北京','上海','四川','香港','台湾');$max = count($team);$teammax = $max - 1 ;for ($i=0;$i<$max;$i++) { for ($o=$i+1;$o<=$teammax;$o++) { if ($i == $o) { continue; }else { echo $team[$i] . ' vs ' . $team[$o]; if ($o == $teammax){ echo "<hr>"; } else{ echo "<br/>"; } } }}武汉 vs 广州
武汉 vs 北京
武汉 vs 上海
武汉 vs 四川
武汉 vs 香港
武汉 vs 台湾
--------------------------------------------------------------------------------
广州 vs 北京
广州 vs 上海
广州 vs 四川
广州 vs 香港
广州 vs 台湾
--------------------------------------------------------------------------------
北京 vs 上海
北京 vs 四川
北京 vs 香港
北京 vs 台湾
--------------------------------------------------------------------------------
上海 vs 四川
上海 vs 香港
上海 vs 台湾
--------------------------------------------------------------------------------
四川 vs 香港
四川 vs 台湾
--------------------------------------------------------------------------------
香港 vs 台湾
--------------------------------------------------------------------------------
你好,版主,你这样的写法我写过,最终生成的结果和我想要的结果是不一样的。
我所想的是
第一轮
1234
5678
第二轮
1523
6784
第三轮
1652
7843
以此类推这样的算法0.0
$arr = array(4,3,2,1,5,6,7,8);
$round = 0; //设置轮次
$arr1 = array_merge($arr, $arr);
$round %= 8;
echo $arr1[$round],$arr1[$round+1],$arr1[$round+2],$arr1[$round+3];
这个意思?
$ar = array(1, 2, 3, 4, 5, 6, 7, 8);$len = count($ar);for($i=1; $i<$len; $i++) { foreach(array_chunk($ar, $len/2) as $v) { echo join('', $v), PHP_EOL; } $t = array_splice($ar, 1, 1); $ar = array_merge($ar, $t); echo PHP_EOL;}1234
5678
1345
6782
1456
7823
1567
8234
1678
2345
1782
3456
1823
4567

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov


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

Dreamweaver CS6
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
