从数组生成单词堆栈

发布于 2024-08-12 10:08:19 字数 477 浏览 6 评论 0原文

我正在尝试用 PHP 做一个简单的词云练习,但没有什么变化。我已经完成了其他所有操作,但我不知道如何进行组合单词的循环。

这是一个示例,可以让您更容易理解我想要做什么:

我有这样的数组:

$arr = array('换行','缩进','代码','问题','更喜欢','我们','编程')

现在我正在尝试执行一个函数,该函数开始遍历该数组并给出我这样的数组:

数组( [0] => '换行' [1] => '换行缩进' [2] => '换行缩进代码' )

数组( [0] => ‘缩进’ [1] => '缩进代码' [2] => '缩进代码问题' )

所以基本上它会逐字遍历原始单词数组,并生成这些包含 1 到 5 个下一个单词的小数组。

I'm trying to do a simple word cloud exercise in PHP but with little twist. I have everything else done but I can't figure out how to do a loop that combines the words.

Here's example that will make it little bit easier to understand what I'm trying to do:

I have array like this:

$arr = array('linebreak','indent','code','question','prefer','we','programming')

Now I'm trying to do a function that starts going thru that array and gives me arrays like these:

Array(
[0] => 'linebreak'
[1] => 'linebreak indent'
[2] => 'linebreak indent code'
)

Array(
[0] => 'indent'
[1] => 'indent code'
[2] => 'indent code question'
)

So basically it goes thru the original words array word by word and makes these little arrays that has 1 to 5 next words combined.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

与他有关 2024-08-19 10:08:19
    $arr = array('linebreak','indent','code','question','prefer','we','programming');
    $val = '';
    foreach($arr as $key=>$value)
    {
        $val .= ' '.$value;
        $newArr[] = $val;
    }

print_r($newArr);
    $arr = array('linebreak','indent','code','question','prefer','we','programming');
    $val = '';
    foreach($arr as $key=>$value)
    {
        $val .= ' '.$value;
        $newArr[] = $val;
    }

print_r($newArr);
烟沫凡尘 2024-08-19 10:08:19
$a = array('linebreak','indent','code','question','prefer','we','programming');

for($i = 0; $i < count($a); $i++) {
    $p = array();
    for($k = $i; $k < count($a); $k++) {
        $p[] = $a[$k];
        $r[] = implode(' ', $p);
    }
}

print_r($r);
$a = array('linebreak','indent','code','question','prefer','we','programming');

for($i = 0; $i < count($a); $i++) {
    $p = array();
    for($k = $i; $k < count($a); $k++) {
        $p[] = $a[$k];
        $r[] = implode(' ', $p);
    }
}

print_r($r);
优雅的叶子 2024-08-19 10:08:19

递归可能是一条出路。我还没有详尽地检查以下语法。

function descend($arr, $offset=0) {
  global $holder;

  $tmp=array_slice($arr,$offset,5); //limits the result set for each starter word to 5 or fewer children

  foreach($tmp as $word) {
    $val .= ' '.$word;
    $holder[$offset][]=$val;
  }
  $offset++;

  if($offset<count($arr)) descend($arr,$offset);
}

$arr = array('linebreak','indent','code','question','prefer','we','programming');
$holder = descend($arr);

Recursion may be the way to go. I haven't exhaustively checked the below for syntax.

function descend($arr, $offset=0) {
  global $holder;

  $tmp=array_slice($arr,$offset,5); //limits the result set for each starter word to 5 or fewer children

  foreach($tmp as $word) {
    $val .= ' '.$word;
    $holder[$offset][]=$val;
  }
  $offset++;

  if($offset<count($arr)) descend($arr,$offset);
}

$arr = array('linebreak','indent','code','question','prefer','we','programming');
$holder = descend($arr);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文