15

给定一个构成单词句子的字符数组,给出一个有效的算法来反转其中单词(不是字符)的顺序。

示例输入和输出:

>>> reverse_words("this is a string")
'string a is this'

它应该是 O(N) 时间和 O(1) 空间(split()并且不允许推入/弹出堆栈)。

谜题取自这里

4

21 回答 21

34

C/C++ 中的解决方案:

void swap(char* str, int i, int j){
    char t = str[i];
    str[i] = str[j];
    str[j] = t;
}

void reverse_string(char* str, int length){
    for(int i=0; i<length/2; i++){
        swap(str, i, length-i-1);
    }
}
void reverse_words(char* str){
    int l = strlen(str);
    //Reverse string
    reverse_string(str,strlen(str));
    int p=0;
    //Find word boundaries and reverse word by word
    for(int i=0; i<l; i++){
        if(str[i] == ' '){
            reverse_string(&str[p], i-p);
            p=i+1;
        }
    }
    //Finally reverse the last word.
    reverse_string(&str[p], l-p);
}

这应该是时间上的 O(n) 和空间上的 O(1)。

编辑:清理了一下。

第一次遍历字符串显然是 O(n/2) = O(n)。第二遍是 O(n + 所有单词的组合长度 / 2) = O(n + n/2) = O(n),这使得这是一个 O(n) 算法。

于 2008-09-06T12:53:35.377 回答
4

将字符串压入堆栈然后将其弹出 - 这仍然是 O(1) 吗?本质上,这与使用 split() 相同...

O(1) 不是就地的意思吗?如果我们可以附加字符串和东西,这个任务会变得很容易,但这会占用空间......

编辑:Thomas Watnedal 是对的。以下算法在时间上为 O(n),在空间上为 O(1):

  1. 就地反转字符串(对字符串的第一次迭代)
  2. 就地反转每个(反转的)单词(对字符串进行另外两次迭代)
    1. 找到第一个单词边界
    2. 在这个单词边界内反转
    3. 重复下一个单词直到完成

我想我们需要证明第 2 步实际上只有 O(2n) ......

于 2008-09-06T13:12:16.957 回答
3
#include <string>
#include <boost/next_prior.hpp>

void reverse(std::string& foo) {
    using namespace std;
    std::reverse(foo.begin(), foo.end());
    string::iterator begin = foo.begin();
    while (1) {
        string::iterator space = find(begin, foo.end(), ' ');
        std::reverse(begin, space);
        begin = boost::next(space);
        if (space == foo.end())
            break;
    }
}
于 2008-09-06T14:43:43.087 回答
2

这是我的答案。没有库调用,也没有临时数据结构。

#include <stdio.h>

void reverse(char* string, int length){
    int i;
    for (i = 0; i < length/2; i++){
        string[length - 1 - i] ^= string[i] ;
        string[i] ^= string[length - 1 - i];
        string[length - 1 - i] ^= string[i];
    }   
}

int main () {
char string[] = "This is a test string";
char *ptr;
int i = 0;
int word = 0;
ptr = (char *)&string;
printf("%s\n", string);
int length=0;
while (*ptr++){
    ++length;
}
reverse(string, length);
printf("%s\n", string);

for (i=0;i<length;i++){
    if(string[i] == ' '){
       reverse(&string[word], i-word);
       word = i+1;
       }
}   
reverse(&string[word], i-word); //for last word             
printf("\n%s\n", string);
return 0;
}
于 2010-09-14T18:34:13.313 回答
1

在伪代码中:

reverse input string
reverse each word (you will need to find word boundaries)
于 2008-09-06T12:41:57.653 回答
1

在 C 中:(C99)

#include <stdio.h>
#include <string.h>

void reverseString(char* string, int length)
{
    char swap;
    for (int i = 0; i < length/2; i++)
    {
        swap = string[length - 1 - i];
        string[length - 1 - i] = string[i];
        string[i] = swap;
    }   
}

int main (int argc, const char * argv[]) {
    char teststring[] = "Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it.";
    printf("%s\n", teststring);
    int length = strlen(teststring);
    reverseString(teststring, length);
    int i = 0;
    while (i < length)
    {
        int wordlength = strspn(teststring + i, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
        reverseString(teststring + i, wordlength);
        i += wordlength + 1;
    }
    printf("%s\n", teststring);
    return 0;
}

这给出了输出:

给定一个组成单词句子的字符数组,给出一个有效的算法来反转其中单词(不是字符)的顺序。

.it in )characters not( words the order of the reverse to algorithm effective an give ,words of sentence a form which characters of array an Given

这最多需要 4N 时间,常数空间很小。不幸的是,它不能优雅地处理标点符号或大小写。

于 2008-09-06T12:49:31.097 回答
1

在 Python 中,空间解为 O(N),时间解为 O(N):

def reverse_words_nosplit(str_):
  """
  >>> f = reverse_words_nosplit
  >>> f("this is a string")
  'string a is this'
  """
  iend = len(str_)
  s = ""
  while True:
    ispace = str_.rfind(" ", 0, iend)
    if ispace == -1:
      s += str_[:iend]
      break
    s += str_[ispace+1:iend]
    s += " "
    iend = ispace
  return s
于 2008-09-06T12:50:09.910 回答
1

您将使用所谓的迭代递归函数,它的时间为 O(N),因为它需要 N(N 是单词的数量)迭代才能完成,并且空间中的 O(1),因为每次迭代都在其中保持自己的状态函数参数。

(define (reverse sentence-to-reverse)
  (reverse-iter (sentence-to-reverse ""))

(define (reverse-iter(sentence, reverse-sentence)
  (if (= 0 string-length sentence)
    reverse-sentence
    ( reverse-iter( remove-first-word(sentence), add-first-word(sentence, reverse-sentence)))

注意:我是在完全新手的方案中编写的,因此对缺乏正确的字符串操作表示歉意。

remove-first-word 找到句子的第一个单词边界,然后取出该部分字符(包括空格和标点符号)并将其删除并返回新句子

add-first-word 找到句子的第一个单词边界,然后取出该部分字符(包括空格和标点符号)并将其添加到 reverse-sentence 并返回新的 reverse-sentence 内容。

于 2008-09-06T13:05:58.890 回答
1

@达伦托马斯

在 D(数字火星)中实现您的算法(时间 O(N),空间 O(1)):

#!/usr/bin/dmd -run
/**
 * to compile & run:
 * $ dmd -run reverse_words.d
 * to optimize:
 * $ dmd -O -inline -release reverse_words.d
 */
import std.algorithm: reverse;
import std.stdio: writeln;
import std.string: find;

void reverse_words(char[] str) {
  // reverse whole string
  reverse(str);

  // reverse each word
  for (auto i = 0; (i = find(str, " ")) != -1; str = str[i + 1..length])
    reverse(str[0..i]);

  // reverse last word
  reverse(str);
}

void main() {
  char[] str = cast(char[])("this is a string");
  writeln(str);
  reverse_words(str);
  writeln(str);
}

输出:

这是一个字符串
字符串 a 是这个
于 2008-09-06T15:31:04.720 回答
1

在红宝石

"这是一个字符串".split.reverse.join(" ")

于 2008-09-16T22:44:40.583 回答
1

这个程序是用“C 语言”中的指针来反转句子,作者是来自 Erode 的 KONGU ENGG COLLEGE 的 Vasantha kumar 和 Sundaramoorthy。

注意:句子必须以点(。)结尾, 因为 NULL 字符不会在句子末尾自动分配*

 #include<stdio.h>
 #include<string.h>

int main()
{
char *p,*s="this is good.",*t;
int i,j,a,l,count=0;

l=strlen(s);

p=&s[l-1];

t=&s[-1];
while(*t)
   {
      if(*t==' ')
     count++;
     t++;
   }
   a=count;
  while(l!=0)
   {
for(i=0;*p!=' '&&t!=p;p--,i++);
   p++;

  for(;((*p)!='.')&&(*p!=' ');p++)
    printf("%c",*p);
  printf(" ");
  if(a==count)
   {
     p=p-i-1;
     l=l-i;
   }
  else
   {
     p=p-i-2;
     l=l-i-1;
   }

count--;
  }

return 0;  
}
于 2016-06-17T09:03:47.553 回答
0

将每个单词压入堆栈。从堆栈中弹出所有单词。

于 2008-09-06T12:44:21.470 回答
0

一个 C++ 解决方案:

#include <string>
#include <iostream>
using namespace std;

string revwords(string in) {
    string rev;
    int wordlen = 0;
    for (int i = in.length(); i >= 0; --i) {
        if (i == 0 || iswspace(in[i-1])) {
            if (wordlen) {
                for (int j = i; wordlen--; )
                    rev.push_back(in[j++]);
                wordlen = 0;
            }
            if (i > 0)
                rev.push_back(in[i-1]);
        }
        else
            ++wordlen;
    }
    return rev;
}

int main() {
    cout << revwords("this is a sentence") << "." << endl;
    cout << revwords("  a sentence   with extra    spaces   ") << "." << endl;
    return 0;
}
于 2008-09-06T13:06:31.383 回答
0
using System;

namespace q47407
{
    class MainClass
    {
        public static void Main(string[] args)
        {
            string s = Console.ReadLine();
            string[] r = s.Split(' ');
            for(int i = r.Length-1 ; i >= 0; i--)
                Console.Write(r[i] + " ");
            Console.WriteLine();

        }
    }
}

编辑:我想我应该阅读整个问题......继续。

于 2008-09-06T13:28:17.260 回答
0

在 C# 中,就地,O(n),并经过测试:

static char[] ReverseAllWords(char[] in_text)
{
    int lindex = 0;
    int rindex = in_text.Length - 1;
    if (rindex > 1)
    {
        //reverse complete phrase
        in_text = ReverseString(in_text, 0, rindex);

        //reverse each word in resultant reversed phrase
        for (rindex = 0; rindex <= in_text.Length; rindex++)
        {
            if (rindex == in_text.Length || in_text[rindex] == ' ')
            {
                in_text = ReverseString(in_text, lindex, rindex - 1);
                lindex = rindex + 1;
            }
        }
    }
    return in_text;
}

static char[] ReverseString(char[] intext, int lindex, int rindex)
{
    char tempc;
    while (lindex < rindex)
    {
        tempc = intext[lindex];
        intext[lindex++] = intext[rindex];
        intext[rindex--] = tempc;
    }
    return intext;
}
于 2009-06-18T05:49:14.940 回答
0

就我的时间而言,效率很高:用 REBOL 写了不到 2 分钟:

reverse_words: func [s [string!]] [form reverse parse s none]

试试看:reverse_words "this is a string" "string a is this"

于 2009-06-18T06:36:37.750 回答
0

一个红宝石解决方案。

# Reverse all words in string
def reverse_words(string)
  return string if string == ''

  reverse(string, 0, string.size - 1)

  bounds = next_word_bounds(string, 0)

  while bounds.all? { |b| b < string.size }
    reverse(string, bounds[:from], bounds[:to])
    bounds = next_word_bounds(string, bounds[:to] + 1)
  end

  string
end

# Reverse a single word between indices "from" and "to" in "string"
def reverse(s, from, to)
    half = (from - to) / 2 + 1

    half.times do |i|
        s[from], s[to] = s[to], s[from]
        from, to = from.next, to.next
    end

    s
end

# Find the boundaries of the next word starting at index "from"
def next_word_bounds(s, from)
  from = s.index(/\S/, from) || s.size
  to = s.index(/\s/, from + 1) || s.size

  return { from: from, to: to - 1 }
end
于 2010-07-26T17:58:24.210 回答
0

这个问题可以用时间 O(n) 和空间 O(1) 来解决。示例代码如下所述:

    public static string reverseWords(String s)
    {

        char[] stringChar = s.ToCharArray();
        int length = stringChar.Length, tempIndex = 0;

        Swap(stringChar, 0, length - 1);

        for (int i = 0; i < length; i++)
        {
            if (i == length-1)
            {
                Swap(stringChar, tempIndex, i);
                tempIndex = i + 1;
            }
            else if (stringChar[i] == ' ')
            {
                Swap(stringChar, tempIndex, i-1);
                tempIndex = i + 1;
            }
        }

        return new String(stringChar);
    }

    private static void Swap(char[] p, int startIndex, int endIndex)
    {
        while (startIndex < endIndex)
        {
            p[startIndex] ^= p[endIndex];
            p[endIndex] ^= p[startIndex];
            p[startIndex] ^= p[endIndex];
            startIndex++;
            endIndex--;
        }
    }
于 2014-05-15T00:35:49.317 回答
0

一个班轮:

l="Is this as expected ??"
" ".join(each[::-1] for each in l[::-1].split())

输出:

'?? expected as this Is'
于 2014-12-03T18:31:46.243 回答
0

算法: 1).反转字符串的每个单词。2).反转结果字符串。

public class Solution {
public String reverseWords(String p) {
   String reg=" ";
  if(p==null||p.length()==0||p.equals(""))
{
    return "";
}
String[] a=p.split("\\s+");
StringBuilder res=new StringBuilder();;
for(int i=0;i<a.length;i++)
{

    String temp=doReverseString(a[i]);
    res.append(temp);
    res.append(" ");
}
String resultant=doReverseString(res.toString());
System.out.println(res);
return resultant.toString().replaceAll("^\\s+|\\s+$", ""); 
}


public String doReverseString(String s)`{`


char str[]=s.toCharArray();
int start=0,end=s.length()-1;
while(start<end)
{
char temp=str[start];
str[start]=str[end];
str[end]=temp;
start++;
end--;
}
String a=new String(str);
return a;

}

public static void main(String[] args)
{
Solution r=new Solution();
String main=r.reverseWords("kya hua");
//System.out.println(re);
System.out.println(main);
}
}
于 2014-12-22T12:37:12.957 回答
0

解决这个问题的算法是基于两步过程,第一步将反转字符串中的单个单词,然后在第二步反转整个字符串。算法的实现将花费 O(n) 时间和 O(1) 空间复杂度。

      #include <stdio.h>
      #include <string.h>

      void reverseStr(char* s, int start, int end);

      int main()
      {
              char s[] = "This is test string";

              int start = 0;
              int end = 0;
              int i = 0;

              while (1) {

              if (s[i] == ' ' || s[i] == '\0')
              {
                    reverseStr(s, start, end-1);
                    start = i + 1;
                    end = start;
              }
              else{
                    end++;
              }

              if(s[i] == '\0'){
                   break;
              }
              i++;
      }

      reverseStr(s, 0, strlen(s)-1);
      printf("\n\noutput= %s\n\n", s);

      return 0;
  }

  void reverseStr(char* s, int start, int end)
  {
     char temp;
     int j = end;
     int i = start;

     for (i = start; i < j ; i++, j--) {
          temp = s[i];
          s[i] = s[j];
          s[j] = temp;
     }
 }
于 2016-05-30T15:44:09.480 回答