包含int和string的列表列表,需要输出基于TrackBar具有最高int值的X字符串(不是排序列表)

时间:2015-02-05 13:35:38

标签: c# string list sorted

我的列表结构为:

"Then a sentence woop", 340 
"and another one",      256
"in order they appear", 700
"in a linked file",     304

该列表包含文本文件每个段落中得分最高的句子。我需要输出每个句子,但是使用轨迹栏可以减少显示的数量。

因此删除分数最低的句子,问题是列表按原文中的句子外观排序,输出需要按此顺序排列。所以,如果我有一个上面列表的轨道栏,它将有4分。如果我把它移到第3点,句子2就会消失,第2点句子2和4就会消失。

生成列表的代码是:

    public List<ScoredSentence> buildSummarySentenceList()
    {
        List<ScoredSentence> ultimateScoreslist = new List<ScoredSentence>();
        scoreCoord2 = -1;
        for (int x1 = 0; x1 < results.Length; x1++)
        {
            List<ScoredSentence> paragraphsScorelist = new List<ScoredSentence>();
            for (int x2 = 0; x2 < results[x1].Length; x2++)
            {
                scoreCoord2++;
                paragraphsScorelist.Add(new ScoredSentence(results[x1][x2], intersectionSentenceScores[scoreCoord2]));
            }
            var maxValue = paragraphsScorelist.Max(s => s.score);

            string topSentence = paragraphsScorelist.First(s => s.score == maxValue).sentence;
            int topScore = paragraphsScorelist.First(s => s.score == maxValue).score;

            ultimateScoreslist.Add(new ScoredSentence(topSentence, topScore));
        }
        return ultimateScoreslist;
    }

    public class ScoredSentence
    {
        public string sentence { get; set; }
        public int score { get; set; }

        public ScoredSentence(string sentence, int score)
        {
            this.sentence = sentence;
            this.score = score;
        }
    }

此代码循环通过锯齿状数组和句子到句子分数列表,它会生成一个列表,如上图所示。

目前我输出每个句子,并将轨迹栏设置为只有句子:

    protected void summaryOutput()
    {
        List<ScoredSentence> ultimateScoreslist = buildSummarySentenceList();
        trackBSummaryPercent.Maximum = ultimateScoreslist.Count;
        lblNoOfLines.Text += trackBSummaryPercent.Maximum.ToString();
        //make 2 lists for the reduction????
        for (var x = 0; x < ultimateScoreslist.Count; x++)
        {
            TextboxSummary.Text += ultimateScoreslist[x].sentence + "\n";
        }
    }

我已经想到在轨道栏的每个onchange tick上都有第二个克隆列表并删除最低值的条目。然后当条形图向上移动以某种方式将缺失的条目从克隆列表中移回。我不喜欢这种方法,因为它可能导致程序速度问题,例如我当前的测试文本是100段长,并且移动轨迹栏可能会使它变慢。

1 个答案:

答案 0 :(得分:1)

将显示的属性添加到ScoredSentence对象。然后,只要列表更改或轨迹栏选择发生更改,就在其上运行此方法以更新显示的元素集。主列表应始终按您希望显示的顺序排序。 numberToDisplay将通过您用于从UI移动到项目数的任何方式来计算。

public void OnUpdate()
{
   var orderedEnumerable = ScoresList.OrderByDescending (s => s.Score);

   foreach (var s in orderedEnumerable.Take (numberToDisplay)) 
   {
      s.Displayed = true;
   }
   foreach (var s in orderedEnumerable.Skip(numberToDisplay)) 
   {
      s.Displayed = false;
   }
}

然后在需要显示时使用以下代码而不是列表

ScoredSentences.Where(s=> s.Displayed);