Remove duplicate items from collection

None.gif public   void  RemoveDuplicatesByName()
ExpandedBlockStart.gifContractedBlock.gif
dot.gif {
InBlock.gif    List
<Posting> postings = GetAllPostings();
InBlock.gif    postings.Sort();
InBlock.gif
InBlock.gif    
for (int i = 1; i < postings.Count; i++)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
if (postings[i].Name == postings[i - 1].Name)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            postings.RemoveAt(i);
InBlock.gif            i
--;
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

ExpandedBlockEnd.gif}

None.gif
None.gif
public  List < Posting >  GetAllPostings()
ExpandedBlockStart.gifContractedBlock.gif
dot.gif {
InBlock.gif    List
<Posting> postings = new List<Posting>();
InBlock.gif    Posting posting;
InBlock.gif    posting 
= new Posting("post1""2005-5-11");
InBlock.gif    postings.Add(posting);
InBlock.gif    posting 
= new Posting("post1""2005-5-11");
InBlock.gif    postings.Add(posting);
InBlock.gif    posting 
= new Posting("post2""2005-6-11");
InBlock.gif    postings.Add(posting);
InBlock.gif    posting 
= new Posting("post2""2005-5-11");
InBlock.gif    postings.Add(posting);
InBlock.gif    posting 
= new Posting("post3""2005-8-11");
InBlock.gif    postings.Add(posting);
InBlock.gif    posting 
= new Posting("post2""2005-7-11");
InBlock.gif    postings.Add(posting);
InBlock.gif    posting 
= new Posting("post1""2005-5-12");
InBlock.gif    postings.Add(posting);
InBlock.gif    posting 
= new Posting("post2""2005-8-11");
InBlock.gif    postings.Add(posting);
InBlock.gif    
return postings;
ExpandedBlockEnd.gif}

None.gif
None.gif
public   class  Posting : IComparable < Posting >
ExpandedBlockStart.gifContractedBlock.gif
dot.gif {
InBlock.gif    
private string name;
InBlock.gif    
private string lastModifiedDate;
InBlock.gif
InBlock.gif    
public Posting(string name, string lastModifiedDate)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif
InBlock.gif        
this.name = name;
InBlock.gif        
this.lastModifiedDate = lastModifiedDate;
ExpandedSubBlockEnd.gif    }

InBlock.gif
InBlock.gif    
public string Name
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn name; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ name = value; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
InBlock.gif    
public string LastModifiedDate
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn lastModifiedDate; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ lastModifiedDate = value; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
InBlock.gif    
public int CompareTo(Posting other)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
return (String.Compare(this.Name, other.Name));
ExpandedSubBlockEnd.gif    }

ExpandedBlockEnd.gif}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值