
首先,初始化三个排序数组 –
int []one = {20, 35, 57, 70};int []two = {9, 35, 57, 70, 92};int []three = {25, 35, 55, 57, 67, 70};
要查找三排序数组中的公共元素,请使用 while 循环迭代数组,并使用第二个数组检查第一个数组,使用第三个数组检查第二个数组 –
while (i < one.Length && j < two.Length && k < three.Length) { if (one[i] == two[j] && two[j] == three[k]) { Console.Write(one[i] + " "); i++;j++;k++; } else if (one[i] < two[j]) i++; else if (two[j] < three[k]) j++; else k++;}
示例
您可以尝试运行以下代码来查找三个排序数组中的公共元素。
现场演示
using System;class Demo { static void commonElements(int []one, int []two, int []three) { int i = 0, j = 0, k = 0; while (i < one.Length && j < two.Length && k < three.Length) { if (one[i] == two[j] && two[j] == three[k]) { Console.Write(one[i] + " "); i++;j++;k++; } else if (one[i] < two[j]) i++; else if (two[j] < three[k]) j++; else k++; } } public static void Main() { int []one = {20, 35, 57, 70}; int []two = {9, 35, 57, 70, 92}; int []three = {25, 35, 55, 57, 67, 70}; Console.Write("Common elements: "); commonElements(one, two, three); }}
输出
Common elements: 35 57 70
以上就是C# 程序在三个排序数组中查找公共元素的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1435347.html
微信扫一扫
支付宝扫一扫