我在php中读取了一个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];
答案 0 :(得分:0)
将$ a [1]设为“94 16”并将$ a [1] [0]设为94是不可能的,因为$ a [1]为字符串而$ a [1]为$ a [1] [0]是一个数组键。
制作两个数组很容易,一个用于行,一个用于参考表
<?
$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>';
}
?>