要求用户在数组中搜索整数

时间:2012-08-20 02:50:33

标签: c++ data-structures

我正在学习处理数据结构,我刚刚编写了一个Insertion_Sorts整数数组的程序。 排序效果非常好,所以没有必要解决它。 但我希望为我的用户提供一种在Sorted数组中搜索特定数字的方法。 并且它不起作用:更具体地说: 我在Win7 x64 Ultimate下的MS VS 2010中编译了以下代码,写完“指定要搜索的数字”后,它崩溃,调试器显示“访问冲突”。

#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <vector>
using namespace std;


int swap(int x, int y)
{
if(x != y)
  {
       _asm
      {
        mov eax,x;
        mov ebx, y;
        mov y,eax;
        mov x, ebx;
      }

  }
return 0;
}

int insertion_sort()
{
int or_size = 2;
int i,j,k,h, size, temp;
char answ;
int xx;
char query [20];


printf("Specify array size\n");
scanf_s("%d", &size);
printf(" Now, input all elements of the array \n");

vector<int> Array(size, 0);
if (size > or_size)
    Array.resize(size);

for (int i = 0; i < size; i++)
{
    scanf_s("%d\n", &temp);
    Array[i] = temp;
}

printf ("Your array appears to be as follows: \n");
for (int i = 0; i < size; i++)
    printf("%d  ", Array[i]);


for (i =0; i < size; i++)
    for (j = 0; j < i; j++)
        if (Array[j] > Array[i])
        {
        temp = Array[j];
        Array[j] = Array[i];
        for (k = i ; k > j ; k-- )
                    Array[k] = Array[k - 1] ;

        Array[k + 1] = temp ;
        }
printf ("\n Your Array has been insertion_sorted and should know look like this: \n");
for (int i = 0; i < size; i++)
    printf("%d ", Array[i]);

printf("\n Would you like to search for a specific value? (Yy/Nn) \n");
answ = _getch();
if (answ == 'Y' || answ == 'y')
{
    printf("Specify number to be searched \n");
    scanf_s("%s", query);
    xx = atoi(query);
    printf("Searching for %d ", query);
    for(h = 0; h < sizeof(Array); h++)
        if (Array.at(h) == xx)
            printf("%d\n", h); 
        else
            printf("No such number was found in a sorted array\n");
}    

Array.clear();

return 0;
}

int main()
{
    insertion_sort();
    return 0;
}

PS忽略_asm部分:它可以工作,但尚未使用: - )

1 个答案:

答案 0 :(得分:1)

printf("Searching for %d ", query);由于query被声明为char的数组,因此您不应使用用于打印有符号整数的%d说明符,更改%d } %squeryxx。由于这是C ++,我会使用std::cout

sizeof(Array)没有做你想做的事。请改用Array.size()

在C ++中,您不必在函数的开头声明所有变量。我相信这是C89的一个老部分。这意味着您可以像for(int h = 0; h < Array.size(); h++)这样声明for循环。

这是尝试在向量中找到内容的一个很好的例子:

if(std::find(Array.begin(), Array.end(), xx) != Array.end())
    std::cout << "found" << std::endl;
else
    std::cout << "not found" << std::endl;

您正在混合使用C和C ++代码。我建议选择一种语言并仅使用该语言。