在数组中怎样找出重复的元素,如果用数组和集合的方法解决怎样解决
大家好,小弟刚学完数组,在网上看了很多排序的方法,讲到以下代码,int[] nums = { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0};
for (int i = 0; i < nums.Length - 1; i++)
//{
// for (int j = 0; j < nums.Length - 1 - i; j++)
// {
// if (nums > nums)
// {
// int temp = nums;
// nums = nums;
// nums = temp;
// }
// }
//}这是编历 一个数组的排序,但在数组中如果有以下这样的情况怎样处理请大家指导一下
//数组方式
char[]ziwu={'a','c','b','f','d','e','b','f'};
//集合方式
ArrayList ziwu = new ArrayList();
ziwu.AddRange(new char[]{ 'a', 'c', 'b', 'f', 'd', 'e', 'b', 'f' });
以上两个声明和初始化后如何排序把不重复的元素找出来
List<int> list1 = new List<int>(); //放不重复的集合
int[] nums = { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}; //你的集合
forearch(int item in nums)
{
if(list1.where(p=>p==item)==0) //这里用到linq
{
list1 .Add(item)
}
}
最后 list1方的就是不重复的
页:
[1]