Simplest way to sort list of objects

后端 未结 3 811
情话喂你
情话喂你 2021-02-12 17:40

I have a list of objects of type A. In a first iteration I assign each object a double value 0 < x < 1 and then want to sort each object according to it\'s x value.

<
3条回答
  •  渐次进展
    2021-02-12 18:17

    I go like this. For getting top c words in a hashmap:

      def getTopCWordsDeclarative(input: mutable.HashMap[String, Int], c: Int): Map[String, Int] = {
        val sortedInput = input.toList.sortWith(_._2 > _._2)
        sortedInput.take(c).toMap
      }
    

提交回复
热议问题