Więc chcesz uniknąć pętli?
Oto masz:
public static String repeat(String s, int times) {
if (times <= 0) return "";
else return s + repeat(s, times-1);
}
(oczywiście wiem, że to brzydkie i nieefektywne, ale nie ma pętli :-p)
Chcesz, żeby było to prostsze i ładniejsze? użyj jython:
s * 3
Edycja : zoptymalizujmy to trochę :-D
public static String repeat(String s, int times) {
if (times <= 0) return "";
else if (times % 2 == 0) return repeat(s+s, times/2);
else return s + repeat(s+s, times/2);
}
Edit2 : Zrobiłem szybki i brudny test porównawczy dla 4 głównych alternatyw, ale nie mam czasu, aby uruchomić go kilka razy, aby uzyskać środki i zaplanować czasy dla kilku danych wejściowych ... Więc oto kod, jeśli ktoś chce spróbować tego:
public class Repeat {
public static void main(String[] args) {
int n = Integer.parseInt(args[0]);
String s = args[1];
int l = s.length();
long start, end;
start = System.currentTimeMillis();
for (int i = 0; i < n; i++) {
if(repeatLog2(s,i).length()!=i*l) throw new RuntimeException();
}
end = System.currentTimeMillis();
System.out.println("RecLog2Concat: " + (end-start) + "ms");
start = System.currentTimeMillis();
for (int i = 0; i < n; i++) {
if(repeatR(s,i).length()!=i*l) throw new RuntimeException();
}
end = System.currentTimeMillis();
System.out.println("RecLinConcat: " + (end-start) + "ms");
start = System.currentTimeMillis();
for (int i = 0; i < n; i++) {
if(repeatIc(s,i).length()!=i*l) throw new RuntimeException();
}
end = System.currentTimeMillis();
System.out.println("IterConcat: " + (end-start) + "ms");
start = System.currentTimeMillis();
for (int i = 0; i < n; i++) {
if(repeatSb(s,i).length()!=i*l) throw new RuntimeException();
}
end = System.currentTimeMillis();
System.out.println("IterStrB: " + (end-start) + "ms");
}
public static String repeatLog2(String s, int times) {
if (times <= 0) {
return "";
}
else if (times % 2 == 0) {
return repeatLog2(s+s, times/2);
}
else {
return s + repeatLog2(s+s, times/2);
}
}
public static String repeatR(String s, int times) {
if (times <= 0) {
return "";
}
else {
return s + repeatR(s, times-1);
}
}
public static String repeatIc(String s, int times) {
String tmp = "";
for (int i = 0; i < times; i++) {
tmp += s;
}
return tmp;
}
public static String repeatSb(String s, int n) {
final StringBuilder sb = new StringBuilder();
for(int i = 0; i < n; i++) {
sb.append(s);
}
return sb.toString();
}
}
Wymaga 2 argumentów, pierwszy to liczba iteracji (każda funkcja działa z czasami powtarzania arg od 1..n), a drugi to ciąg do powtórzenia.
Jak na razie szybka kontrola czasów z różnymi danymi wejściowymi pozostawia w rankingu coś takiego (lepiej na gorsze):
- Iteracyjna aplikacja StringBuilder (1x).
- Rekurencyjne wywołania log2 konkatenacji (~ 3x).
- Rekurencyjne wywołania liniowe konkatenacji (~ 30x).
- Iatacyjna konkatenacja liniowa (~ 45x).
Nigdy bym nie zgadł, że funkcja rekurencyjna była szybsza niż for
pętla: -o
Baw się dobrze (ctional xD).