1

更具体地说:如何按某个键的值对结构向量进行排序?

例如,如果我有:

(defstruct Item :weight :value :cost
(def my-items [(struct Item 30 50 5)
               (struct Item 15 75 20)
               (struct Item 50 10 35)])

我将如何按值对向量中的所有项目进行排序?

4

1 回答 1

5

使用排序依据

Clojure 1.4.0
user=> (defstruct Item :weight :value :cost)
#'user/Item
user=> (def my-items [(struct Item 30 50 5)
               (struct Item 15 75 20)
               (struct Item 50 10 35)])
#'user/my-items
user=> (sort-by :value my-items)
({:weight 50, :value 10, :cost 35} {:weight 30, :value 50, :cost 5} {:weight 15, :value 75, :cost 20})
于 2012-08-30T10:46:03.290 回答