电话聊天狂人
11-散列1 电话聊天狂人 (25分)
给定大量手机用户通话记录,找出其中通话次数最多的聊天狂人。
输入格式:
输入首先给出正整数N(≤105),为通话记录条数。随后N行,每行给出一条通话记录。简单起见,这里只列出拨出方和接收方的11位数字构成的手机号码,其中以空格分隔。
输出格式:
在一行中给出聊天狂人的手机号码及其通话次数,其间以空格分隔。如果这样的人不唯一,则输出狂人中最小的号码及其通话次数,并且附加给出并列狂人的人数。
输入样例:
4
13005711862 13588625832
13505711862 13088625832
13588625832 18087925832
15005713862 13588625832
输出样例:
13588625832 3
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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #define KEYLENGTH 13 #define MAXTABLESIZE 100001 typedef char ElementType[KEYLENGTH]; typedef int Index; typedef struct LNode* PtrToLNode; struct LNode{ ElementType Data; int cnt; PtrToLNode Next; }; typedef PtrToLNode Position; typedef PtrToLNode List; typedef struct TblNode *HashTable; struct TblNode { int TableSize; List Heads; }; HashTable CreateTable( int TableSize ); Position Find( HashTable H, ElementType Key ); Index Hash( ElementType Key, int TableSize ); int NextPrime( int N ); void Insert( HashTable H, ElementType Key ); void ScanAndOutput( HashTable H ); void DestroyTable( HashTable H ); int main(){ //freopen("C:\\in.txt","r", stdin); int N, i; scanf ( "%d" , &N); HashTable H; ElementType Key; H = CreateTable( N*2 ); for ( i=0; i<N*2; i++){ scanf ( "%s" , Key); Insert( H, Key ); } ScanAndOutput(H); DestroyTable( H ); return 0; } void DestroyTable( HashTable H ){ int i; Position P, Tmp; for ( i=0; i<H->TableSize; i++ ){ P = H->Heads[i].Next; while ( P ){ Tmp = P->Next; free ( P ); P = Tmp; } } free ( H->Heads ); free ( H ); } void ScanAndOutput( HashTable H ){ int i; int N = 0; int max = 0; Position P; ElementType Key; for ( i=0; i<H->TableSize; i++){ P = H->Heads[i].Next; while ( P ){ if (max<P->cnt){ max = P->cnt; strcpy (Key, P->Data); N = 1; } else if ( max == P->cnt) { if ( strcmp (Key, P->Data)>0) strcpy ( Key, P->Data); N++; } P = P->Next; } } printf ( "%s %d" , Key, max); if (N>1) printf ( " %d" , N); printf ( "\n" ); } HashTable CreateTable( int TableSize ) { HashTable H; int i; H = (HashTable) malloc ( sizeof ( struct TblNode)); H->TableSize = NextPrime(TableSize); H->Heads = (List) malloc (H->TableSize* sizeof ( struct LNode)); for ( i=0; i<H->TableSize; i++ ){ H->Heads[i].Data[0] = '\0' ; H->Heads[i].Next = NULL; H->Heads[i].cnt = 0; } return H; } Index Hash( ElementType Key, int TableSize ){ return atoi (Key+6) % TableSize; } int NextPrime( int N ){ int i, p = ( N%2 )? N+2: N+1; while ( p<= MAXTABLESIZE ) { for ( i = ( int ) sqrt (p); i>2; i-- ) if ( !(p%i) ) break ; if ( i==2 ) break ; else p += 2; } return p; } Position Find( HashTable H, ElementType Key ){ Position P; Index Pos; Pos = Hash(Key, H->TableSize); P = H->Heads[Pos].Next; while ( P&& strcmp ( P->Data, Key)) P = P->Next; return P; } void Insert( HashTable H, ElementType Key ){ Position P, NewCell; Index Pos; P = Find( H, Key ); if ( !P ){ NewCell = (Position) malloc ( sizeof ( struct LNode)); strcpy ( NewCell->Data, Key ); Pos = Hash( Key, H->TableSize ); NewCell->Next = H->Heads[Pos].Next; NewCell->cnt = 1; H->Heads[Pos].Next = NewCell; } else { P->cnt++; } } |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· C++代码改造为UTF-8编码问题的总结
· DeepSeek 解答了困扰我五年的技术问题
· 为什么说在企业级应用开发中,后端往往是效率杀手?
· 用 C# 插值字符串处理器写一个 sscanf
· Java 中堆内存和栈内存上的数据分布和特点
· 为DeepSeek添加本地知识库
· .NET程序员AI开发基座:Microsoft.Extensions.AI
· 精选4款基于.NET开源、功能强大的通讯调试工具
· 数据不出内网:基于Ollama+OneAPI构建企业专属DeepSeek智能中台
· 大模型工具KTransformer的安装