田野里,高粱像喝醉了酒,频频点头;玉米正在变黄了的衣服里睡大觉;大豆也小坡了肚皮,蹦了出来;小白菜像列队的士兵整齐地排列在在菜地里。农民正忙忙碌碌地收获着一年的成果,田野里不时传出阵阵欢笑声。啊,秋天的景色真美啊!
<?php
/**
* SystemSwitch
*
* @author haodaima.com
* @date 2020/10/16
* -------------------------------------------------------------
* 十进制整数转换为二、八、十六进制整数 n = (n div d) * d + n mod d
* -------------------------------------------------------------
*/
class SystemSwitch
{
/**
* @var array
*/
protected $systemGather;
/**
* @var int
*/
protected $input;
/**
* @var mixed
*/
protected $output;
/**
* SystemSwitch constructor.
*
* @param $input
* @param $output
*/
public function __construct($input, $output)
{
$this->systemGather = array (2, 8, 16);
$this->input = $input;
$this->output = $output;
}
public function run()
{
$before = $this->input;
$stack = new StackExample();
while ($this->input != 0) {
$mod = $this->input % $this->output;
$stack->setPushStack($mod);
$this->input = (int)($this->input - $mod) / $this->output;
}
$output = '';
if ($this->output == 16) {
$output .= '0x';
} else if ($this->output == 8) {
$output .= '0';
}
foreach ($stack->getAllPopStack() as $value) {
if ($this->output == 16) {
switch ($value) {
case 10:
$value = 'A';
break;
case 11:
$value = 'B';
break;
case 12:
$value = 'C';
break;
case 13:
$value = 'D';
break;
case 14:
$value = 'E';
break;
case 15:
$value = 'F';
break;
}
}
$output .= $value;
}
// 因为输出语句会自动将整型的数转换为10进制输出
// 也即如果转换后的结果为0xff,直接将0xff输出会得到255,所以返回一数组
return array (
'before' => $before, // 转换之前
'after' => intval($output, $this->output), // 转换后的整型数(整型)
'string' => $output // 转换后的整型数的字符串表示(字符串型)
);
}
}
// load the stack
define("DS", DIRECTORY_SEPARATOR);
require_once dirname(__DIR__) . DS . 'Structure' . DS . 'StackExample.php';
$systemObj = new SystemSwitch(6, 16);
$result = $systemObj->run();
var_dump($result);
本文PHP经典算法之堆栈实现进制转换到此结束。小树会大,大树会老,老树会凋零。小编再次感谢大家对我们的支持!