アイテムのスコア (賛成票/反対票に基づく) を取得し、時間の減衰を考慮した目に見えない基本的なスコアに基づいてそれらを並べ替える並べ替えアルゴリズムを作成したいと考えています。
分析哲学の側から来たので、私の数学的アルゴリズムは常に最高であるとは限りません。次の例で InverseTimeRelationship(currentItem.CreationDate) を解決する簡単でエレガントな方法は何ですか:
class Item()
{
int upvotes;
int downvotes;
int SortScore;
DateTime CreationDate;
}
var currentItem = GetSomeSpecificItemMethod();
int Score = currentItem.upvotes - currentItem.downvotes;
currentItem.SortScore = Score * InverseTimeRelationship(currentItem.CreationDate);
SortItemsBySortScore(Item[]);
InverseTimeRelationship(DateTime CreationDate)
{
//Code To Write
}
1日後にSortScoreが少し低くなることが期待されますが、2〜3日後には投票数に関係なく、リスト/フロントページの上部から消えます.