Ds\Vector::rotate() 函數可以將 verctor 旋轉給定的旋轉次數。
用法
public void Ds\Vector::rotate( int $rotations )
Ds\Vector::rotate() 函數可以將向量旋轉給定的旋轉次數,相當於如果旋轉次數為正數,則相當於依次調用 $vector->push($vector->shift()) 或 $vector->unshift($vector->pop()) 如果為負。
Ds\Vector::rotate() 函數不返回任何值。當前實例的向量可以旋轉。
例子1
<?php
$vector = new \Ds\Vector([1, 2, 3, 4, 5]);
echo("The original vector:\n");
print_r($vector);
$vector->rotate(2);
echo("\n The vector after rotating by 2 places:\n");
print_r($vector);
?>
示例2
<?php
$vector = new \Ds\Vector([1, 2, 3, 4, 5]);
echo("The original vector:\n");
print_r($vector);
$vector->rotate(4);
echo("\n The vector after rotating by 4 places:\n");
print_r($vector);
?>
相關用法
- PHP Ds Vector reduce()用法及代碼示例
- PHP Ds Vector reverse()用法及代碼示例
- PHP Ds Vector remove()用法及代碼示例
- PHP Ds Vector reversed()用法及代碼示例
- PHP Ds Vector allocate()用法及代碼示例
- PHP Ds Vector get()用法及代碼示例
- PHP Ds Vector count()用法及代碼示例
- PHP Ds Vector sum()用法及代碼示例
- PHP Ds Vector sorted()用法及代碼示例
- PHP Ds Vector set()用法及代碼示例
- PHP Ds Vector unshift()用法及代碼示例
- PHP Ds Vector last()用法及代碼示例
- PHP Ds Vector push()用法及代碼示例
- PHP Ds Vector first()用法及代碼示例
- PHP Ds Vector jsonSerialize()用法及代碼示例
- PHP Ds Vector insert()用法及代碼示例
- PHP Ds Vector construct()用法及代碼示例
- PHP Ds Vector contains()用法及代碼示例
- PHP Ds Vector toArray()用法及代碼示例
- PHP Ds Vector merge()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Ds Vector rotate() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。