list = list.Where(x => x.QT != null).ToList(); 
此语句能达到O(n)级别吗?ToList()操作的时间复杂度是多少?词语与比list.RemoveAll(x => x.QT == null) 效率高吗? 在线等,希望大家来讨论下。