The Ds\Deque::rotate() function is an inbuilt function in PHP which is used to rotate the elements of Deque by the given number of rotations.
Syntax:
public Ds\Deque::rotate( $rotations ) : void
Parameters: This function accepts single parameter $rotations which holds the number of rotation of the elements in Deque is to be rotated.
Return value: This function does not return any value.
Below programs illustrate the Ds\Deque::rotate() function in PHP:
Program 1:
<?php
$deck = new \Ds\Deque([1, 2, 3, 4, 5, 6]);
echo ( "Elements of Deque\n" );
print_r( $deck );
$deck ->rotate(2);
echo ( "Rotated Deque\n" );
print_r( $deck );
?>
|
Output:
Elements of Deque
Ds\Deque Object
(
[0] => 1
[1] => 2
[2] => 3
[3] => 4
[4] => 5
[5] => 6
)
Rotated Deque
Ds\Deque Object
(
[0] => 3
[1] => 4
[2] => 5
[3] => 6
[4] => 1
[5] => 2
)
Program 2:
<?php
$deck = new \Ds\Deque([ "geeks" , "for" , "geeks" , "practice" ]);
echo ( "Elements of Deque\n" );
print_r( $deck );
$deck ->rotate(2);
echo ( "Rotated Deque\n" );
print_r( $deck );
?>
|
Output:
Elements of Deque
Ds\Deque Object
(
[0] => geeks
[1] => for
[2] => geeks
[3] => practice
)
Rotated Deque
Ds\Deque Object
(
[0] => geeks
[1] => practice
[2] => geeks
[3] => for
)
Reference: http://php.net/manual/en/ds-deque.rotate.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
14 Aug, 2019
Like Article
Save Article