bsearch无法搜索小于其先前元素的元素

时间:2020-03-12 15:38:53

标签: c arrays sorting data-structures bsearch

我一直在从事涉及搜索数组的活动,而我目前正在使用bsearch进行此工作。问题在于,只要该元素小于其先前的元素,bsearch就无法搜索它。而且,当我正在搜索的元素在大于或等于3的索引中时,就会开始出现此问题。 我在用C btw编码。拜托,我急切需要您的帮助,谢谢。 这是我的代码:

#include<stdio.h>
#include<stdlib.h>
#define MAX 10

typedef struct{
  int elements[MAX];
  int count;
}SET;

int cmpfunc(const void * a, const void * b) {
  return (*(int*)a > *(int*)b) - (*(int*)a < *(int*)b);
}

void print(SET *s1, SET *s2){
  int key = 2;
  int *p;
  p = bsearch(&key,&s1->elements,s1->count,sizeof(int),cmpfunc);
  printf("%p",p,sizeof(s1->elements));

  return;
}

int main () {
  SET s1 = {{1,5,4,2,6,3},6};
  SET s2 = {{1,29,3,5},4};

  print(&s1,&s2);

  return(0);
}

0 个答案:

没有答案