MathGroup Archive 2005

[Date Index] [Thread Index] [Author Index]

Search the Archive

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


  • Prev by Date: Fourier Integrals
  • Next by Date: Re: Log function
  • Previous by thread: Re: Sorting nested list
  • Next by thread: Re: Sorting nested list