Skip to content
Snippets Groups Projects
Commit b3600a16 authored by Mauricio Giacomini Girardello's avatar Mauricio Giacomini Girardello
Browse files

update sort alg of basic rater

parents e03eea71 78e68089
No related branches found
No related tags found
No related merge requests found
class Ranking::Strategies::BasicRater < Ranking::Strategy
def sortByRate(items)
first = items.first
rest = items.drop(1)
rest.zip(rest.size.downto(1))
.collect { |item, reverseIndex| rateItem(item, reverseIndex) } # Returns RatedItem instance
.sort { |itemA, itemB| itemA.rate <=> itemB.rate }
items.zip( items.size.downto(1) )
.collect { |item,reverseIndex| self.rateItem( item, reverseIndex ) }
.sort { |itemA,itemB| itemA.rate <=> itemB.rate }
.collect { |ri| ri.item }
.push(first)
.reverse # Best ranked comes first
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment