- 论坛徽章:
- 1
|
30 digits如果理解为30个bit的大值,用10叉树实现了一下,显示runtimeerror- #include <stdio.h>
- #include <stdlib.h>
- #define BRANCHNUM 10
- #define BRANCHFLAG4INT (BRANCHNUM/(sizeof(int) << 3) + ((BRANCHNUM % (sizeof(int) << 3)) ?1 : 0))
- #define IS_BIT_SET(value, i) ((value) & (1 << (i)))
- #define SET_BIT(value, i) ((value) |= (1 << (i)))
- typedef struct List_single_struct{
- struct List_single_struct* next;
- }List_single, *PList_single;
- typedef struct dic{
- List_single listForFree;
- struct dic *next[BRANCHNUM];
- int cnt;
- int endCnt;
- int flag4BitExist;
- }MyDic, *PMyDic;
- int gMaxCnt= 0;
- PMyDic insertDic(PMyDic pRoot, int elem)
- {
- int eleSub; /*value after diong modular arithmetic*/
- if (NULL == pRoot)
- {
- pRoot = calloc(sizeof(MyDic), 1);
- }
- PMyDic pTmp = pRoot;
- while(elem)
- {
- eleSub = elem % 10;
- elem /= 10;
- if(!IS_BIT_SET(pTmp->flag4BitExist, eleSub))
- {
- pTmp->next[eleSub] = calloc(sizeof(MyDic), 1);
- pTmp->listForFree.next = (PList_single)pTmp->next[eleSub];
- }
- pTmp->cnt++;
- SET_BIT(pTmp->flag4BitExist, eleSub);
- if(elem == 0)
- {
- pTmp->endCnt++;
- gMaxCnt = (pTmp->endCnt > gMaxCnt) ? pTmp->endCnt : gMaxCnt;
- }
- pTmp = pTmp->next[eleSub];
- }
- return pRoot;
- }
- void freeAllDicNodes(PMyDic pRoot)
- {
- PMyDic pTmp = pRoot, pTmpNext = 0;
- int i;
-
- while(pTmp)
- {
- pTmpNext = (PMyDic)pTmp->listForFree.next;
- free(pTmp);
- pTmp = pTmpNext;
- }
- return;
- }
- int main()
- {
- int cnt;
- int val;
- PMyDic pRoot = 0;
- while(scanf("%d", &cnt) == 1)
- {
- while(cnt --)
- {
- if(scanf("%d", &val) == 1)
- {
- pRoot = insertDic((PMyDic)pRoot, val);
- }
- }
- freeAllDicNodes(pRoot);
- printf("%d\n", gMaxCnt);
- gMaxCnt = 0;
- pRoot = NULL;
- }
-
- return 0;
- }
复制代码 |
|