vote up 0 vote down star

Hi,

I am writing a Jython script to sort a list of URLs.

I have a list that looks like this:

http://www.domain.com/folder1/folder2/|,1
http://www.domain.com/folder1/|,1
http://www.domain.com/folder1/folder2/folder3/|,1
http://www.domain.com/folder1/|,1
http://www.domain.com/folder1/folder2/|,1
http://www.domain.com/folder1/folder2/|,1
http://www.domain.com/folder1/folder2/folder3/|,1

The pipe and the comma separates the path from the amount of files that are under that path. Is it possible some how use Jython to order the URLs by length, so it would end up look like the below list:

http://www.domain.com/folder1/|,1
http://www.domain.com/folder1/|,1
http://www.domain.com/folder1/folder2/|,1
http://www.domain.com/folder1/folder2/|,1
http://www.domain.com/folder1/folder2/|,1
http://www.domain.com/folder1/folder2/folder3/|,1
http://www.domain.com/folder1/folder2/folder3/|,1

Hope you guys get what I mean, any help would be appreciated. Cheers

flag

3 Answers

vote up 3 vote down check

Sort-by-length, using a sort function:

urls.sort(lambda a, b: cmp(len(a), len(b)))

For performance, some might prefer the decorate-sort-undecorate pattern:

urllengths= [(len(url), url) for url in urls]
urllengths.sort()
urls= [url for (l, url) in urllengths]

Or as a one-liner:

urls= zip(*sorted((len(url), url) for url in urls))[1]
link|flag
jython supports a key argument for sort(), so you could just use: urls.sort(key=len). – J.F. Sebastian Nov 3 '08 at 13:17
vote up 1 vote down

Until jython catches up to python 2.4, you cannot use the key argument to list.sort():

mylist.sort(key=len)

So, like in the good old days, we have the decorate-sort-undecorate idiom. To sort mylist by item length, we generate a decorated_list of (len(item),item) tuples, sort that, and finally strip the items back:

decorated_list = zip(map(len, mylist), mylist)
decorated_list.sort()
sorted_list = [i[1] for i in decorated_list]
link|flag
For the symmetry I would use: sorted_list = map(operator.itemgetter(1), decorated_list) instead of sorted_list = [i[1] for i in decorated_list] – J.F. Sebastian Nov 3 '08 at 13:25
Or (for symmetry): decorated_list = zip([len(i) for i in mylist], mylist) (Jython 2.2) – gimel Nov 3 '08 at 13:38
Jython 2.2 doesn't have operator.itemgetter(). – J.F. Sebastian Nov 3 '08 at 14:34
vote up 0 vote down

Wouldn't sorting them take care of this?

link|flag
The English dictionary is sorted, but you don't get all the 1-letter words before all the 2-letter words – Gareth Oct 30 '08 at 10:17
True, but in the sample data given a sort would work. – Michael McCarty Oct 30 '08 at 10:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.