我是一个有编程的初学者,但在编写自己的程序时,我遇到了一个我似乎无法解决的障碍。
无论如何,在数组中给出一组这样的数字:
4
14
24
27
34
你可以看到除了一个数字之外的所有数字在一个地方都是4。如何编写一个可以返回某个地方不同数字的函数,27在这种情况下?每次运行程序时,数字都会有所不同,但由于这种情况,其中4个在这些地方总是有相同的数字。它们不一定按数字顺序排列。
我似乎无法通过数学方法找到方法,也无法通过搜索找到任何内容。有什么想法吗?
答案 0 :(得分:2)
使用%
运算符编写程序以获取单位位置值
void check ()
{
int i, changeIndex =0;
for ( i = 0; i < 5; i++)
{
for (int k = 0; k < 5; k++)
{
if (a[i]%10 == a[k]%10)
{
changeIndex++;
}
}
if (changeIndex != 4)
{
break;
}
changeIndex = 0;
}
cout<<a[i];
}
这将适用于5的计数,如果只有一个数字具有不同的单位位置值
答案 1 :(得分:2)
这是完成这项工作的一种方法。绝对不是最有效的,但无论如何都是好的。这个输入适用于任意数量的输入,只要一个输入与其余输入不同(显然是单位数字)。
#include <algorithm>
#include <iostream>
#include <vector>
int main() {
std::vector<int> n = {4, 14, 27, 24, 34};
std::sort(std::begin(n), std::end(n),
[](int a, int b) { return a%10 < b%10;});
std::cout << ((n[0]%10 < n[1]%10) ? n.front() : n.back());
}
编辑:我决定添加另一个。虽然这仍然比@ Rici(非常好)的解决方案做了更多的比较,但它至少是线性的(并且没有重新排列原始数据):
#include <algorithm>
#include <iostream>
#include <vector>
int main() {
std::vector<int> n = {4, 14, 27, 24, 34};
auto pos = std::adjacent_find(std::begin(n), std::end(n),
[](int a, int b) { return a%10 != b%10; });
if (pos != std::begin(n))
std::cout << pos[1];
else
std::cout << n[n[1]%10 != n[2]%10];
}
答案 2 :(得分:2)
Jerry Coffin的解决方案是不必要的O(log N)
;可以使用std::partition
而非std::sort
:
#include <algorithm>
#include <iostream>
#include <vector>
int main() {
std::vector<int> n = {4, 14, 27, 24, 34};
int first = n[0]%10;
std::partition(std::next(std::begin(n)), std::end(n),
[&](int a) { return first == a%10;});
std::cout << ((first != n[1]%10) ? n.front() : n.back());
}
但这仍然有太多的比较。最多(N+1)/2
次比较可以解决这个问题:
#include <iostream>
#include <vector>
int odd_man_out(const std::vector<int> n) {
size_t i;
for (i = 0; i + 2 < n.size(); i += 2) {
if (n[i]%10 != n[i+1]%10)
return n[i]%10 != n[i+2]%10 ? i : i + 1;
}
if (i + 2 == n.size() && n[i]%10 == n[i-1]%10)
return i + 1;
else
return i;
}
int main() {
std::vector<int> n = {4, 14, 27, 24, 34};
std::cout << n[odd_man_out(n)];
}
答案 3 :(得分:1)
这里你去......:p
适用于任意数量的输入......甚至可以检测它们是否完全相同。
#include <iostream>
int main() {
int a[] = {4,14,24,34,27,94};
// assume a has more than 2 elements, otherwise, it makes no sense
unsigned ri = 0;
if (a[1]%10 == a[0]%10) {
for (ri = 2; (ri < sizeof(a)/sizeof(a[0])) && (a[ri]%10 == a[0]%10); ri++);
} else if (a[2]%10 == a[0]%10)
ri = 1;
if (ri < sizeof(a)/sizeof(a[0]))
std::cout << "weird number is a["<< ri <<"] = "<<a[ri] << std::endl;
else
std::cout<<"they're all the same" << std::endl;
return 0;
}
请注意实际工作:
if (a[1]%10 == a[0]%10) {
for (ri = 2; (ri < sizeof(a)/sizeof(a[0])) && (a[ri]%10 == a[0]%10); ri++);
} else if (a[2]%10 == a[0]%10)
ri = 1;
只有4行长! :P
运行时间是max(1,[异常#的位置]),即O(n),其中n是a的大小。