検索

ホームページ  >  に質問  >  本文

1次元配列を2次元配列に分割する

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

は # に分割されます

##[

[0.6,0.7,1],

[0],

[-1,-2,-3],

[0,0],

[-1,-5,-6],

##[1,3,4]

]

このプログラムはどのように書けばよいでしょうか

看我的大白眼看我的大白眼1320日前897

全員に返信(1)返信します

  • 手机用户1616837104

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

    この方法は少し愚かですが、目的の効果を得ることができます。お役に立てれば幸いです。コードは次のとおりです。 パブリック関数インデックス() { $array = [0.6, 0.7, 1, 0, -1, -2, -3, 0, 0, -1, -5, -6, 1, 3, 4]; $結果 = []; foreach ($array as $value) { $count = count($result); if ($count > 0) { $single = $result[$count - 1]; $index = 終了($single); if (0 === $index) { if (0 === $value) { $result = $this->handleArray($result, $single, $value, $count); } それ以外 { $result = $this->handleArrayTwo($result, $value); } elseif ($index > 0) { if ($value handleArrayTwo($result, $value); } それ以外 { $result = $this->handleArray($result, $single, $value, $count); } elseif ($index < 0) { if ($value >= 0) { $result = $this->handleArrayTwo($result, $value); } それ以外 { $result = $this->handleArray($result, $single, $value, $count); } } } それ以外 { $result = $this->handleArrayTwo($result, $value); } } var_dump($result); 死ぬ。 } プライベート関数 handleArray($result, $single, $value, $index) { unset($result[$index - 1]); array_push($single, $value); array_push($result, $single); 配列値を返します($result); } プライベート関数 handleArrayTwo($result, $value) { $array = []; array_push($array, $value); array_push($result, $array); $result を返します。 } // 配列(6) { //[0]=> // 配列(3) { //[0]=> // float(0.6) //[1]=> // float(0.7) //[2]=> // int(1) // } //[1]=> // 配列(1) { //[0]=> // int(0) // } //[2]=> // 配列(3) { //[0]=> // int(-1) //[1]=> // int(-2) //[2]=> // int(-3) // } //[3]=> // 配列(2) { //[0]=> // int(0) //[1]=> // int(0) // } //[4]=> // 配列(3) { //[0]=> // int(-1) //[1]=> // int(-5) //[2]=> // int(-6) // } //[5]=> // 配列(3) { //[0]=> // int(1) //[1]=> // int(3) //[2]=> // int(4) // } //}

    返事
    0
  • キャンセル返事