Quindi vuoi evitare i loop?
Ecco qui:
public static String repeat(String s, int times) {
if (times <= 0) return "";
else return s + repeat(s, times-1);
}
(ovviamente so che questo è brutto e inefficiente, ma non ha anelli :-p)
Lo vuoi più semplice e più bello? usa jython:
s * 3
modificare : ottimizziamolo un pochino MrGreen
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 : ho fatto un benchmark rapido e sporco per le 4 alternative principali, ma non ho tempo di eseguirlo più volte per ottenere i mezzi e tracciare i tempi per diversi input ... Quindi ecco il codice se qualcuno vuole per provarlo:
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();
}
}
Sono necessari 2 argomenti, il primo è il numero di iterazioni (ogni funzione viene eseguita con ripetizione arg da 1..n) e la seconda è la stringa da ripetere.
Finora, una rapida ispezione dei tempi di esecuzione con input diversi lascia la classifica qualcosa del genere (meglio o peggio):
- Appendice StringBuilder Iterative (1x).
- Invocazioni del log2 concatenazione ricorsiva (~ 3x).
- Invocazioni lineari di concatenazione ricorsiva (~ 30x).
- Concatenazione iterativa lineare (~ 45x).
Non avrei mai immaginato che la funzione ricorsiva fosse più veloce di for
ciclo Eeeek !!!
Buon divertimento (ctional xD).