suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Teilen Sie ein eindimensionales Array in ein zweidimensionales Array auf

[0.6,0.7,1,0,-1,-2,-3,0,0,-1,-5,-6,1,3,4]

ist unterteilt in

[

[0.6 , 0,7,1],

[0],

[-1,-2,-3],

[0,0],

[-1,-5,-6],

[1 , 3,4]

]

Wie soll ich dieses Programm schreiben

看我的大白眼看我的大白眼1322 Tage vor900

Antworte allen(1)Ich werde antworten

  • 手机用户1616837104

    手机用户16168371042021-04-22 14:37:26

    方法蠢了点,但是能达到你想要的效果,希望可以帮到你,代码如下: public function index() { $array = [0.6, 0.7, 1, 0, -1, -2, -3, 0, 0, -1, -5, -6, 1, 3, 4]; $result = []; foreach ($array as $value) { $count = count($result); if ($count > 0) { $single = $result[$count - 1]; $index = end($single); if (0 === $index) { if (0 === $value) { $result = $this->handleArray($result, $single, $value, $count); } else { $result = $this->handleArrayTwo($result, $value); } } elseif ($index > 0) { if ($value handleArrayTwo($result, $value); } else { $result = $this->handleArray($result, $single, $value, $count); } } elseif ($index < 0) { if ($value >= 0) { $result = $this->handleArrayTwo($result, $value); } else { $result = $this->handleArray($result, $single, $value, $count); } } } else { $result = $this->handleArrayTwo($result, $value); } } var_dump($result); die; } private function handleArray($result, $single, $value, $index) { unset($result[$index - 1]); array_push($single, $value); array_push($result, $single); return array_values($result); } private function handleArrayTwo($result, $value) { $array = []; array_push($array, $value); array_push($result, $array); return $result; } // array(6) { // [0]=> // array(3) { // [0]=> // float(0.6) // [1]=> // float(0.7) // [2]=> // int(1) // } // [1]=> // array(1) { // [0]=> // int(0) // } // [2]=> // array(3) { // [0]=> // int(-1) // [1]=> // int(-2) // [2]=> // int(-3) // } // [3]=> // array(2) { // [0]=> // int(0) // [1]=> // int(0) // } // [4]=> // array(3) { // [0]=> // int(-1) // [1]=> // int(-5) // [2]=> // int(-6) // } // [5]=> // array(3) { // [0]=> // int(1) // [1]=> // int(3) // [2]=> // int(4) // } //}

    Antwort
    0
  • StornierenAntwort