如何反转字符串中的单词? [英] How to reverse words in a string?

查看:133
本文介绍了如何反转字符串中的单词?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这个问题已经被其他成员问过/回答了,但是我的情况有些不同.

This question is already asked/answered by other members but my case is a bit different..

问题:如何反转字符串中的单词?您可以使用strpos(),strlen(),substr(),但不能使用其他非常有用的函数,例如explode(),strrev()等.

Problem: How to reverse words in a string? You can use strpos(), strlen(), substr() but not other very useful functions such as explode(), strrev() etc.

这基本上是一个面试问题,所以我需要证明操纵字符串的能力.

This is basically an interview question so I need to demonstrate ability to manipulate strings.

示例:

$ string =我是男孩"

$string = "I am a boy"

答案:

我是个傻子"

下面是我的解决方案,花了我2​​天(叹气),但必须有更优雅的解决方案.我的代码看起来很长..

Below is my solution that took me 2 days(sigh) but there gotta be more elegant solution. My code looks very long..

提前谢谢!

我的意图:

1. get number of word
2. based on number of word count, grab each word and store into array
3. loop through array and output each word in reverse order

代码:

<?php

$str = "I am a boy";

echo reverse_word($str) . "\n";

function reverse_word($input) {
    //first find how many words in the string based on whitespace
    $num_ws = 0;
    $p = 0;
    while(strpos($input, " ", $p) !== false) {
        $num_ws ++;
        $p = strpos($input, ' ', $p) + 1;
    }

    echo "num ws is $num_ws\n";

    //now start grabbing word and store into array
    $p = 0;
    for($i=0; $i<$num_ws + 1; $i++) {
        $ws_index = strpos($input, " ", $p);
        //if no more ws, grab the rest
        if($ws_index === false) {
            $word = substr($input, $p);
        }
        else {
            $length = $ws_index - $p;
            $word = substr($input, $p, $length);
        }
        $result[] = $word;
        $p = $ws_index + 1; //move onto first char of next word
    }

    print_r($result);
    //append reversed words
    $str = '';
    for($i=0; $i<count($result); $i++) {
        $str .= reverse($result[$i]) . " ";
    }
    return $str;
}

function reverse($str) {
    $a = 0;
    $b = strlen($str)-1;
    while($a < $b) {
        swap($str, $a, $b);
        $a ++;
        $b --;
    }
    return $str;
}

function swap(&$str, $i1, $i2) {
    $tmp = $str[$i1];
    $str[$i1] = $str[$i2];
    $str[$i2] = $tmp;
}

?>

推荐答案

$string = "I am a boy";

$reversed = "";
$tmp = "";
for($i = 0; $i < strlen($string); $i++) {
    if($string[$i] == " ") {
        $reversed .= $tmp . " ";
        $tmp = "";
        continue;
    }
    $tmp = $string[$i] . $tmp;    
}
$reversed .= $tmp;

print $reversed . PHP_EOL;
>> I ma a yob

这篇关于如何反转字符串中的单词?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆