时间:2021-05-20
本文实例讲述了C#不重复输出一个数组中所有元素的方法。分享给大家供大家参考。具体如下:
1.算法描述
0)输入合法性校验
1)建立临时数组:与原数组元素一样。该步骤的目的是防止传入的原数组被破坏
2)对临时数组进行排序
3)统计临时数组共有多少个不同的数字。该步骤的目的是为了确定结果集数组的长度
4)建立结果集数组,只存放不同的数字
5)返回结果集
2.函数代码
/// <summary>/// 建立包含原数组内所有元素且元素间互不重复的新数组/// </summary>/// <param name="array">原数组</param>/// <param name="isAsc">true:升序排列/false:降序排列</param>/// <returns>新数组</returns>private static int[] DifferentElements(int[] array, bool isAsc = true){ //0.输入合法性校验 if (array == null || array.Length == 0) { return new int[] { }; } //1.临时数组:与原数组元素一样 int[] tempArray = new int[array.Length]; for (int i = 0; i < tempArray.Length; i++) { tempArray[i] = array[i]; } //2.对临时数组进行排序 int temp; for (int i = 0; i < tempArray.Length; i++) { for (int j = i; j < tempArray.Length; j++) { if (isAsc) { if (tempArray[i] > tempArray[j]) { temp = tempArray[i]; tempArray[i] = tempArray[j]; tempArray[j] = temp; } } else { if (tempArray[i] < tempArray[j]) { temp = tempArray[i]; tempArray[i] = tempArray[j]; tempArray[j] = temp; } } } } //3.统计临时数组共有多少个不同的数字 int counter = 1; for (int i = 1; i < tempArray.Length; i++) { if (tempArray[i] != tempArray[i - 1]) { counter++; } } //4.建立结果集数组 int[] result = new int[counter]; int count = 0; result[count] = tempArray[0]; for (int i = 1; i < tempArray.Length; i++) { if (tempArray[i] != tempArray[i - 1]) { count++; result[count] = tempArray[i]; } } //5.返回结果集 return result;}3.Main函数调用
static void Main(string[] args){ int[] array = new int[] { 1, 9, 1, 9, 7, 2, 2, 5, 3, 4, 5, 6, 3, 3, 6, 2, 6, 7, 8, 0 }; //数组:包含原数组内全部元素且不重复(升序排列) int[] result1 = DifferentElements(array); foreach (int i in result1) { Console.Write(i.ToString() + "\t"); } //数组:包含原数组内全部元素且不重复(降序排列) int[] result2 = DifferentElements(array,false); foreach (int i in result2) { Console.Write(i.ToString() + "\t"); } Console.ReadLine();}4.程序输出示例
希望本文所述对大家的C#程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#查找列表中所有重复出现元素的方法。分享给大家供大家参考。具体实现方法如下:publicT[]GetDuplicates(TinputValue
join()方法:将数组中所有元素通过指定分隔符连接成一个字符串举例:myArr.join('-')//用'-'符号拼接concat()方法:将两个数组或多个数
C语言数组中重复的数字解决方法:题目:在一个长度为n的数组里的所有数字都在0-n-1的范围内。数组中某些数字是重复的,但是不知道有几个数字重复了,也不知道每个数
本文实例讲述了C#实现生成所有不重复的组合功能。分享给大家供大家参考,具体如下:给你几个字母,比如(a,b,c,d,e,f),要求生成所有不重复的组合。这里重复
三数之和给你一个包含n个整数的数组nums,判断nums中是否存在三个元素a,b,c,使得a+b+c=0?请你找出所有满足条件且不重复的三元组。注意:答案中不可