11-散列1 电话聊天狂人

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef struct ListNode *Position;
typedef struct ListNode{
	char PhoneNum[12];
	int cnt;
	Position Next;
} *List;

typedef struct HashTbl{
	int TableSize;
	List *TheLists;//建立一个ListNode的指针数组
} *HashTable;

int NextPrime(int x);
HashTable InitializeTable(int TableSize);
void DestroyTable(HashTable H);
Position Find(char Key[], HashTable H);
void Insert(char Key[], HashTable H);
int Hash(int Key, int TableSize);
void FindMax(HashTable H);

int main(int argc, char const *argv[])
{
	// freopen("test.txt", "r", stdin);
	int N;
	scanf("%d", &N);
	HashTable H = InitializeTable(2 * N);
	char send[12], rec[12];
	for (int i = 0; i < N; i++){
		scanf("%s %s\n", send, rec);
		Insert(send, H), Insert(rec, H);
	}
	FindMax(H);
	DestroyTable(H);
	return 0;
}

int NextPrime(int x)
{
	int i; 
	for (int Next = x; ; Next++){
		for (i = 2; i * i <= Next; i++)
			if (Next % i == 0)
				break;
		if (i * i > Next)
			return Next;
	}
}

HashTable InitializeTable(int TableSize)
{
	HashTable H;
	H = (HashTable)malloc(sizeof(struct HashTbl));
	H->TableSize = NextPrime(TableSize);
	H->TheLists = (List*)malloc(sizeof(List)*H->TableSize);
	for (int i = 0; i != H->TableSize; i++){
		H->TheLists[i] = (List)malloc(sizeof(struct ListNode));
		H->TheLists[i]->Next = NULL;
	}
	return H;
}

void DestroyTable(HashTable H)
{
	for (int i = 0; i < H->TableSize; i++)
		free(H->TheLists[i]);
	free(H->TheLists);
	free(H);
}

Position Find(char Key[], HashTable H)
{
	Position P;
	List L;
	L = H->TheLists[Hash(atoi(Key + 6), H->TableSize)];
	P = L->Next;
	while (P != NULL && strcmp(P->PhoneNum, Key))
		P = P->Next;
	return P;
}

void Insert(char Key[], HashTable H)
{
	Position Pos, Tmp;
	List L = H->TheLists[Hash(atoi(Key + 6), H->TableSize)];
	Pos = Find(Key, H);
	if (Pos == NULL){
		Tmp = (List)malloc(sizeof(struct ListNode));
		strcpy(Tmp->PhoneNum, Key);
		Tmp->cnt = 1;
		Tmp->Next = L->Next;
		L->Next = Tmp;
	} else {
		(Pos->cnt)++;
	}
}

int Hash(int Key, int TableSize)
{
	return (Key % TableSize);
}

void FindMax(HashTable H)
{
	Position P;
	int maxcnt = 0, maxSame = 1;
	char MinPhone[12];
	for (int i = 0; i < H->TableSize; i++){
		P = H->TheLists[i]->Next;
		while (P != NULL){
			if (P->cnt > maxcnt){
				strcpy(MinPhone, P->PhoneNum);
				maxcnt = P->cnt;
				maxSame = 1;
			} else if (P->cnt == maxcnt){
				if (strcmp(MinPhone, P->PhoneNum) > 0)
					strcpy(MinPhone, P->PhoneNum);
				maxSame++;
			}
			P = P->Next;
		}
	}
	printf("%s %d", MinPhone, maxcnt);
	if (maxSame > 1)
		printf(" %d", maxSame);
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值