从两个已排序的数组中打印出不常见的元素
给定两个已排序的数组,输出应显示它们的非公共元素
Given : array1[]= {1, 4, 6, 9, 12} array2[]= {2, 4, 7, 8, 9, 10} Output : 1 2 6 7 8 10 12
算法
START Step 1 -> declare two arrays array1 and array2 with elements as int and variables n1, n2, i to 0 and j to 0 Step 2 -> calculate number of elements in array1 sizeof(array1)/sizeof(array1[0]) Step 3-> calculate number of elements in array2 sizeof(array2)/sizeof(array2[0]) Step 4 -> Loop While till i<n1 and j<n2 IF array1[i]<array2[j] Print array1[i++] End IF ELSE If array1[i] > array2[j] Print array2[j++ ] End ELSE IF ELSE i++ and j++ End ELSE Step 5 -> End Loop While Step 6 -> loop While i < n1 && array1[i]!=array2[j] Print array1[i++] Step 7 -> End Loop While Step 8 -> loop While j < n2 && array2[j]!=array1[i] Print array2[j++] Step 9 -> End Loop While STOP
Example
的中文翻译为:示例
#include <stdio.h> int main(int argc, char const *argv[]) { int array1[]= {1, 4, 6, 9, 12}; int array2[]= {2, 4, 7, 8, 9, 10}; int n1, n2, i=0, j=0; n1 = sizeof(array1)/sizeof(array1[0]); //Calculating number of elements in array1 n2 = sizeof(array2)/sizeof(array2[0]); //Calculating number of elements in array2 while(i < n1 && j < n2) { if(array1[i] <array2[j]) //checking whether the element of array1 is smaller than array2 printf("%d</p><p>", array1[i++]); else if (array1[i] > array2[j]) //checking whether the element of array2 is smaller than array1 printf("%d</p><p>", array2[j++]); else { //if they are equal increment both i and j i++; j++; } } while(i < n1 && array1[i]!=array2[j]) //print remaining array1 printf("%d</p><p>", array1[i++]); while(j < n2 && array2[j]!=array1[i]) //print remaining array1 printf("%d</p><p>", array2[j++]); return 0; }
输出
如果我们运行上面的程序,它将生成以下输出
1 2 6 7 8 10 12
以上是从两个已排序的数组中打印出不常见的元素的详细内容。更多信息请关注PHP中文网其他相关文章!

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

本文解释了C标准模板库(STL),重点关注其核心组件:容器,迭代器,算法和函子。 它详细介绍了这些如何交互以启用通用编程,提高代码效率和可读性t

本文详细介绍了c中有效的STL算法用法。 它强调了数据结构选择(向量与列表),算法复杂性分析(例如,std :: sort vs. std vs. std :: partial_sort),迭代器用法和并行执行。 常见的陷阱

本文讨论了C中的动态调度,其性能成本和优化策略。它突出了动态调度会影响性能并将其与静态调度进行比较的场景,强调性能和之间的权衡

本文讨论了使用C中的移动语义来通过避免不必要的复制来提高性能。它涵盖了使用std :: Move的实施移动构造函数和任务运算符,并确定了关键方案和陷阱以有效

C 20范围通过表现力,合成性和效率增强数据操作。它们简化了复杂的转换并集成到现有代码库中,以提高性能和可维护性。

本文详细介绍了C中的有效异常处理,涵盖了尝试,捕捉和投掷机制。 它强调了诸如RAII之类的最佳实践,避免了不必要的捕获块,并为强大的代码登录例外。 该文章还解决了Perf

文章讨论了在C中有效使用RVALUE参考,以进行移动语义,完美的转发和资源管理,重点介绍最佳实践和性能改进。(159个字符)
