K&R练习题6-1统计关键词出现的次数
这道练习题训练了:
1.结构体数组
2.二分查找
3.指针操作
----
都不难。但非常基础,我认为非常好,做完了记到博客上来,题目见k&R,实现例如以下:
/*
* Practice of struct array. K&R 6-1
* @author : wusuopubupt
* @date : 2014-09-18
*/ #include <stdio.h>
#include <ctype.h>
#include <string.h> #define MAXWORD 100 typedef struct key_{
char *word;
int count;
} key; key key_tab[] = {
{"auto", 0},
{"break", 0},
{"case", 0},
{"char", 0},
{"const", 0},
{"continue", 0},
{"default", 0},
{"for", 0},
{"int", 0},
{"void", 0},
{"while", 0}
}; int getword(char *word, int n);
int binary_search(key key_tab[], char *word, int n);
key *binary_search2(key *key_tab, char *word, int n); int getword(char *word, int n) {
int c;
char *w = word; while(isspace(c = getchar())) {
;
}
if(c != EOF) {
*w++ = c;
}
if(!isalpha(c)) {
*w = '\0';
return c;
}
while(n > 0) {
c = getchar();
if(isalnum(c)) {
*w++ = c;
}
else {
break;
}
n--;
} *w = '\0';
return w[0];
} int binary_search(key key_tab[], char *word, int n) {
int low = 0;
int high = n-1;
int mid;
int result;
while(low <= high) {
mid = (low+high) / 2;
result = strcmp(word, key_tab[mid].word);
if(result < 0) {
high = mid-1;
}
else if(result > 0) {
low = mid + 1;
}
else {
return mid;
}
}
return -1;
} /* implemented with pointer */
key *binary_search2(key *key_tab, char *word, int n) {
key *low = key_tab;
key *high = key_tab + n-1;
key *mid;
int result;
while(low <= high) {
//mid = (low+high) / 2; /* error: can not use pointer+pointer d*/
mid = low + (high-low) / 2; /* pointer + num */
result = strcmp(word, mid->word);
if(result < 0) {
high = mid-1;
}
else if(result > 0) {
low = mid + 1;
}
else {
return mid;
}
}
return NULL;
} int main1() {
int i;
int n_keys = sizeof(key_tab) / sizeof(key_tab[0]);
char word[MAXWORD]; while(getword(word, MAXWORD) != EOF) {
if(isalpha(word[0])) {
if((i = binary_search(key_tab, word, n_keys)) >= 0) {
key_tab[i].count++;
}
}
} i = 0;
while(i < n_keys) {
printf("%s : %d\n", key_tab[i].word, key_tab[i].count);
i++;
} return 0;
} int main() {
int n_keys = sizeof(key_tab) / sizeof(key_tab[0]);
char word[MAXWORD];
key *k = NULL; while(getword(word, MAXWORD) != EOF) {
if(isalpha(word[0])) {
if((k = binary_search2(key_tab, word, n_keys)) != NULL) {
k->count++;
}
}
} int i = 0;
while(i < n_keys) {
printf("%s : %d\n", key_tab[i].word, key_tab[i].count);
i++;
} return 0;
}
github:https://github.com/wusuopubupt/LearningC/blob/master/K%26R/chp6/keyword_count.c
K&R练习题6-1统计关键词出现的次数的更多相关文章
- eval(function(p,a,c,k,e,r)解密程序
以eval(function(p,a,c,k,e,r){e=function(c)开头的js文件是经过加密的 使用下面方法可以对js文件进行加密.解密 步骤:1.新建html页面,内容如下列代码 2. ...
- sort +awk+uniq 统计文件中出现次数最多的前10个单词
实例cat logt.log|sort -s -t '-' -k1n |awk '{print $1;}'|uniq -c|sort -k1nr|head -100 统计文件中出现次数最多的前10个单 ...
- collections.Counter类统计列表元素出现次数
# 使用collections.Counter类统计列表元素出现次数 from collections import Counter names = ["Stanley", &qu ...
- Excel中COUNTIFS函数统计词频个数出现次数
Excel中COUNTIFS函数统计词频个数出现次数 在Excel中经常需要实现如下需求:在某一列单元格中有不同的词语,有些词语相同,有的不同(如图1所示).需要统计Excel表格中每个词语出现的 ...
- 学习笔记_过滤器应用_1(分ip统计网站的访问次数)
分ip统计网站的访问次数 ip count 192.168.1.111 2 192.168.1.112 59 统计工作需要在所有资源之前都执行,那么就可以放到Filter中了. 我们这个过滤器不打算做 ...
- 【C语言】统计数组中出现次数超过一半的数字
//统计数组中出现次数超过一半的数字 #include <stdio.h> int Find(int *arr, int len) { int num = 0; //当前数字 int ti ...
- R语言︱数据分组统计函数族——apply族用法与心得
每每以为攀得众山小,可.每每又切实来到起点,大牛们,缓缓脚步来俺笔记葩分享一下吧,please~ --------------------------- 笔者寄语:apply族功能强大,实用,可以代替 ...
- 在hadoop上进行编写mapreduce程序,统计关键词在text出现次数
mapreduce的处理过程分为2个阶段,map阶段,和reduce阶段.在要求统计指定文件里的全部单词的出现次数时. map阶段把每一个关键词写到一行上以逗号进行分隔.并初始化数量为1(同样的单词h ...
- 2019牛客国庆集训派对day1 K题 双向链表练习题 splay区间翻转
题目链接: 解法: 先建n颗平衡树,合并的时候将a中最右的结点翻转到根节点,b中最左的结点翻转到根节点,对合并后的根节点进行标记. #include <bits/stdc++.h> usi ...
随机推荐
- new[] class deconstructor
Class class(); Class *class1=new class; class1=&class; delete class1; // Assert 指针指向的是一个栈中的对象, ...
- 将一个数转化为二进制后,求其中1的个数 C++
#include <iostream>using namespace std;int func(int x){ int count=0; while(x) { x=x&(x-1); ...
- Oracle 创建用户并且授权
以sysdba登陆 创建用户:CREATE USER username IDENTIFIED BY password; 授予(角色)权限:GRANT CONNECT,RESOURCE TO usern ...
- 软件源(Software Sources)
写在前面:浏览了很多国内外的网站,看了很多关于软件源(Software Sources)设置的文章,发现有很多文章中对软件源的设置存在误解,为了让新人能顺利进入Ubuntu的大家庭,特地作此文,详细地 ...
- nginx的 CPU参数worker_processes和worker_cpu_affinity使用说明
官方说明: http://wiki.nginx.org/NginxChsHttpMainModule#worker_cpu_affinity http://wiki.nginx.org/NginxCh ...
- 用typedef声明类型
定义: 可以用typedef声明一个新的类型名来代替已有的类型名. 用法: typedef int INTEGER;//指定用标识符INTEGER代表int类型 typedef float REAL; ...
- BZOJ 2631: tree( LCT )
LCT...略麻烦... -------------------------------------------------------------------------------- #inclu ...
- java面向对象中的String类中12种常用的方法
1.字符串与字符数组的转换 字符串可以使用toCharArray()方法变成一个字符数组,也可以使用String类的构造方法把一个字符数组变成一个字符串. public class StringAPI ...
- JVM 指令集合
指令码 助记符 说明 0x00 nop 什么都不做 0x01 aconst_null 将null推送至栈顶 0x02 iconst_m1 将int型-1推送至栈顶 0x03 iconst_0 将int ...
- KVO(键-值观察)
// 1.键-值观察 // 2.它提供一种机制,当指定的对象的属性被修改后,则对象就会接受到通知. // 3.符合KVC(Key-ValuedCoding)机制的对象才可以使用KVO // 4.实现过 ...