0

我在 php.ini 中读取了一个 txt 文件。问题是我可以除了它的空间。我使用了 explode() 函数,但它不起作用。我尝试了所有的阅读方式,但都不对。

$a = file_get_contents($file_url, FILE_USE_INCLUDE_PATH);
$a = explode(" ",$a);//When I call this, all of value are added to $a[0] as an array
$a = explode("\n",$a[0]); // I called this to explode "enter" but it doesn't work too

现在,调用上面的代码后,$a[0] 是“85”,$a[1] 是“94 16”。当我调用 $a[1][0] 时,我想要的是“9”而不是“94”。

txt 文件中的数据是一个三角形,如 IOI 1994 中的问题:

85
94 16
15 63 72
55 78 89 105
77 24 56 93 17
...

这是我要使用的文件http://www.mediafire.com/?kjdjflvf0665q03

这是我用txt文件中的数据解决问题三角形的代码

$t = array();
$count = 0;
$l = strlen($a[0]);
$d = 0;//get the quantity of rows in txt file
while($l>0){
    $d++;
    $l = $l - $d;
}
$f = array();
$prevX = $prevY = $val = 0;
//add all of values to array $t[] as a type: $t[row][col]
for($i =0 ; $i<$d; $i++){
    for($j=0; $j<=$i; $j++){
        $t[$i][$j] = $a[0][$count++];
    }
}
//start the beginning points: $f[row+1][col] = ($t[row+1][col]+MAX(f[row][col],f[row][col-1]),prevX, prevY, $t[row+1][col]) 
$f[0][0] = array($t[0][0],$prevX,$prevY, $t[0][0]);
$f[1][0] = array(($t[1][0]+$f[0][0][0]),0,0,$t[1][0]);
$f[1][1] = array(($t[1][1]+$f[0][0][0]),0,0,$t[1][1]);
$i=2;
while($i<$d){
    for ( $j=0; $j <= $i; $j++ ){
        if(($j-1)<0){//check to except the value which not undefined, but may be not works exactly
            $f[$i][$j] = array(($f[$i-1][$j][0]+$t[$i][$j]),$i-1,$j,$t[$i][$j]);
        }
        else {
            if($j>($i-1)){//check to except the value which not undefined, but may be not works exactly
                $f[$i][$j] = array(($f[$i-1][$j-1][0]+$t[$i][$j]),$i-1,$j-1,$t[$i][$j]);
            }
            else{ 
                if($f[$i-1][$j][0]<$f[$i-1][$j-1][0]){
                    $f[$i][$j] = array(($f[$i-1][$j-1][0]+$t[$i][$j]),$i-1,$j-1,$t[$i][$j]);
                }
                else if($f[$i-1][$j][0]>$f[$i-1][$j-1][0]){
                    $f[$i][$j] = array(($f[$i-1][$j][0]+$t[$i][$j]),$i-1,$j,$t[$i][$j]);
                }
            }
        }
    }
    $i++;
}
//print_r($f);
$result=0;
$x = $y = $finalR = 0;
for($j=0;$j<$d;$j++){
    if($f[$d-1][$j][0]>$result){
        $result = $f[$d-1][$j][0];
        $x = $d-1;
        $y = $j;
        $finalR = $f[$d-1][$j][3];
    }
}
while($x>0){
    echo '(',$x,',',$y,')',$f[$x][$y][3],'<----';
    $x = $f[$x][$y][1];
    $y = $f[$x][$y][2];
}
echo '(0,0)', $f[0][0][3];
4

1 回答 1

0

不可能将 $a[1] 设为 "94 16" 而将 $a[1][0] 设为 94 是不可能的,因为 $a[1] 是字符串,而 $a[1][0] 中的 $a[1]是一个数组键。

It's easy enough to make two arrays, one for the row and one for the reference table

<?
$file = file('file.txt');
foreach($file as $i => $line)
{
    foreach(explode("\t",$line) as $num)
    {
        $num = trim($num);
        if($num!='')
        {
            $a[$i][] = $num;
        }
    }
}
echo '<pre>';
pre($a);

//full rows examples
pre(get_ref('0',$a));
pre(get_ref('1',$a));
pre(get_ref('2',$a));

//individual cells examples
pre(get_ref('0,0',$a));
pre(get_ref('1,0',$a));
pre(get_ref('1,1',$a));
pre(get_ref('2,0',$a));
pre(get_ref('2,1',$a));
pre(get_ref('3,2',$a));

function get_ref($ref,$a)
{
    $ref = explode(',',$ref);
    foreach($ref as $r)
    {
        $a = $a[$r];
    }
    if(is_array($a))
    {
        return(implode("\t",$a));
    }else{
        return($a);
    }

}


function pre($d)
{
    echo '<pre>';
    print_r($d);
    echo '</pre>';
}
?>
于 2013-02-03T08:16:32.123 回答