☆─────────────────────────────────────☆
iq300 (iq300) 于 (Thu Mar 27 18:03:29 2008) 提到:
“Given a string build all possible non-zero length substrings from it.
Example
Input:
abc
Output:
a
b
c
ab
ac
bc
abc
Solve this task using recursion.”
☆─────────────────────────────────────☆
jobseek (seeking+jobs) 于 (Thu Mar 27 18:06:00 2008) 提到:
typical question, please refer to wrox interview book
☆─────────────────────────────────────☆
iq300 (iq300) 于 (Thu Mar 27 18:09:55 2008) 提到:
//sigh
i