gpt4 book ai didi

java - 在java中反转字符串

转载 作者:行者123 更新时间:2023-12-02 00:42:32 26 4
gpt4 key购买 nike

在java中反转字符串的代码:注意:一两个附加变量就可以了。数组的额外副本不是。

现在我已经实现了如下算法:

public static void removeDuplicates(char[] str) {
if (str == null) return;
int len = str.length;
if (len < 2) return;

int tail = 1;

for (int i = 1; i < len; ++i) {
int j;
for (j = 0; j < tail; ++j) {
if (str[i] == str[j]) break;
}
if (j == tail) {
str[tail] = str[i];
++tail;
}
}
str[tail] = something //something to mark end of char array eg '\0' as we have in C
}

最佳答案

我会这样做(伪代码):

// s is array of char that holds the string
i=0
j=s.length - 1
while (i < j)
swap characters at positions i and j
i++
j--

关于java - 在java中反转字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5936419/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com