免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1137 | 回复: 0
打印 上一主题 下一主题

百度笔试题求两个整数集合的公共元素 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-08-09 21:06 |只看该作者 |倒序浏览
求两个整数集合的公共元素。
大致思路就是对一个集合求hash,然后遍历另一个集合,如果在hash中就打印...程序内面有很多无用的个人认为是技巧的技巧


#include stdio.h>
#include stdlib.h>
#include time.h>
#define N1 10
#define N2 5
#define MAX 15
typedef struct hash
{
  int num;
  struct hash* next;
}HASH;
int C[MAX];
HASH* H[10];
int swap(int* a, int* b)
{
  int tmp = *a;
  *a = *b;
  *b = tmp;
}
  
int get_rand(int start, int end)
{
  int rand_num = rand()%(end-start+1)+start;
  printf("rand_num is %d\n",rand_num);
  swap(C+start, C+rand_num);
  
  return C[start];
}
void init_array_a(int A[])
{
  int i = 0;
  for(i=0;iN1;i++)
   A = get_rand(i,MAX);
     
}
void init_array_b(int B[])
{
   int i;
   for(i=0;iN2;i++)
    B = get_rand(i,MAX);
}

void init_hash()
{
  int i;
  for(i=0;i10;i++)
   {
    H = (HASH*)malloc(sizeof(HASH));
    H->next = NULL;
   }
}
void add_hash(int num)
{
  int hash_num = num%10;
  HASH* p = (HASH*)malloc(sizeof(HASH));
  p->num = num;
  p->next = H[hash_num]->next;
  H[hash_num]->next = p;
}
int exist(int num)
{
int hash_num = num%10;
HASH* p = H[hash_num]->next;
while(p!=NULL)
  {
   if(p->num == num)
     return 1;
   p = p->next;
  }
  return 0;
}
int main(int argc, char *argv[])
{
  int A[N1];
  int B[N2];
  int i;
   
  srand((unsigned int)time(NULL));
  for(i=0;iMAX;i++)
   C = i+1;
   
init_array_a(A);
init_array_b(B);
init_hash();
   
  printf("array A is:\n");
  for(i=0;iN1;i++)
   {
    printf("%d ",A);
    add_hash(A);
   }
  printf("\narray B is:\n");
  for(i=0;iN2;i++)
    printf("%d ",B);
  
   
  printf("\n交集is:\n");
  for(i=0;iN2;i++)
   {
     if(exist(B))
         printf("%d ",B);
   }
  system("PAUSE");   
  return 0;
}


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/76292/showart_2022697.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP