• C语言通用交换和查询函数


    C语言通用交换和查询函数

    #include
    #include
    #include
    using namespace std;
    
    void swap(void *a,void *b,int size)
    {
    	unsigned char t[size];
    	memcpy(t,a,size);
    	memcpy(a,b,size);
    	memcpy(b,t,size);
    }
    
    // n数组大小 m找的数据类型占多少个字节 
    // 通用查找方法1 
    void* search1(void* a,void* k,int n,int m)
    {
    	for(int i = 0; i < n; i++)
    	{
    		void* loc = (char*)a + i * m;
    		if(memcmp(loc,k,m) == 0)
    		return loc; 
    	 } 
    	 return NULL;
    }
    
    // 通用查找方法2(字符串查找
     
    void* search2(void* a,void* k,int n,int m,int (*cmp1)(void* ,void*))
    {
    	for(int i = 0;i < n; i++)
    	{
    		void* addr = (char*)a + i*m;
    		if(cmp1(addr,k) == 0)
    		{
    			return addr;
    		}
    	}	
    	return NULL;
    } 
    
    // 字符串比较 
    int cmp1(void* x,void* y)
    {
    	char* a= *(char**)x;
    	char* b= *(char**)y;
    	return strcmp(a,b);
    }
    
    int main()
    {
    	int x = 10;
    	int y = 20;
    	int arr[5] = {0,1,2,3,4};
    	int lenArr = 5;
    	int k = 2;
    	swap(&x,&y,sizeof(int));
    	printf("x = %d, y = %d\n",x,y); 
    	int result = *(int *)search1(arr,&k,lenArr,sizeof(int));
    	printf("在int数组中查找到的元素: result = %d\n",result);
    	if(result != 0)
    	{
    		printf("存在该元素!\n");
    	}else{
    		printf("不存在该元素!\n");
    	}
    	char* books[] = {"book1","book2","book3","book4"}; 
    	int lenBooks = 4;
    	char* book = {"book2"};
    	char* test = {"book2"};
    	int result1 = cmp1(&book,&test);
    	printf("测试cmp1方法的返回值是否为0: %d\n",result1);
    	char* result2 = *(char **)search2(books,&book,lenBooks,sizeof(char*),cmp1);
    	printf("在字符串数组中查找到的元素:result2 = %s\n",result2);
    	if(strcmp(book,result2))
    	{
    		printf("存在该元素!\n");
    	}else{
    		printf("不存在该元素!\n");
    	}
    	
    	
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
  • 相关阅读:
    2.4_3死锁的处理策略---避免死锁
    【附源码】计算机毕业设计SSM外卖调度管理系统
    该如何选择合适的服务器,保证服务器的安全
    开发人员常犯的 5 大 JavaScript 错误及其解决方案
    安装编译openssl支持https访问
    抖音 获取商品详情 API
    2.1 关系数据结构及形式化定义
    常用的display的属性
    Vue中的路由懒加载:提高性能和用户体验
    微信小程序积分活动有哪些玩法
  • 原文地址:https://blog.csdn.net/ailaohuyou211/article/details/127924372