原帖由 teebye 于 2009-9-7 17:08 发表 ![]()
RT
**** 本内容被作者隐藏 *****
def all_sub_string( l ):
if( len( l ) == 1 ):
return [l]
else:
r = []
for x in range( 1, len( l ) + 1 ):
r.append( [ l[0] ] + l[ 1:x ] )
a = all_sub_string( l[1:] )
return r + a |
>>> all_sub_string(list('hello'));
[['h'], ['h', 'e'], ['h', 'e', 'l'], ['h', 'e', 'l', 'l'], ['h', 'e', 'l', 'l', 'o'], ['e'], ['e', 'l'], ['e', 'l', 'l'], ['e', 'l', 'l', 'o'], ['l'], ['l', 'l'], ['l', 'l', 'o'], ['l'], ['l', 'o'], ['o']]
[ 本帖最后由 orangetouch 于 2009-9-8 01:39 编辑 ] |