根据红宝石中出现的次数对数组进行排序 [英] sort an array of arrays based on number of occurences in ruby

查看:90
本文介绍了根据红宝石中出现的次数对数组进行排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望根据该整数数组的出现次数以正确的顺序对其进行排序.

I want this integer array to be sorted in the right order based on its number of occurrences.

question = [[1, 7, 8, 9, 10, 11, 12, 19, 20, 21, 31, 32, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 81, 129, 132, 133, 134, 135, 136, 139], [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 81, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141], [30], [77]] 

question.flatten.uniq.size = 90

answer = sort_it(question)

answer = [77, 68, 8, 9, 10, 11, 12, 19, 20, 21, 31, 139, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 135, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 136, 66, 67, 7, 70, 71, 72, 73, 74, 75, 76, 1, 78, 79, 81, 129, 132, 133, 134, 45, 65, 32, 2, 3, 4, 5, 6, 13, 14, 15, 16, 17, 22, 23, 24, 25, 26, 27, 29, 33, 41, 69, 130, 137, 138, 140, 141, 30]

answer.uniq.size = 90

这是我的Ruby代码:

Here is my Ruby code:

def sort_it(actual)
        join=[]
        buffer = actual.dup 
        final = [ ]

                (actual.size-2).downto(0) {|j|
                join.unshift(actual.map{|i| i }.inject(:"&"))
                actual.pop
                }
        ordered_join =  join.reverse.flatten
        final << ordered_join
        final << buffer.flatten - ordered_join

        final.flatten
end

这种方法行吗?有没有更有效的方法?

Is this approach OK? Is there a more efficient approach?

为向托克兰和尼古拉斯致敬,编辑了以前错误顺序的答案. 谢谢!

As a tribute to tokland and niklas, edited the answer which was in the wrong order before. Thanks!

推荐答案

使用group_by:

question.flatten.group_by{|x| x}.sort_by{|k, v| -v.size}.map(&:first)

这篇关于根据红宝石中出现的次数对数组进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆