Re: Sorting nested list
- To: mathgroup at smc.vnet.net
- Subject: [mg57361] Re: Sorting nested list
- From: "meznaric" <meznaric at gmail.com>
- Date: Wed, 25 May 2005 06:03:11 -0400 (EDT)
- References: <d6us0f$ivm$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
You should probably use pattern matching. For example for your list: lst = {{a, {2, 4, 1}}, {b, {3.2, -2}}}; lst//. {a___, {b_, c_List /; ! OrderedQ[c, Less]}, d___} :> {a, {b, Sort[c]}, d} You can basically set up a transformation rule for any such structured list. Sebastjan