• WC项目(补发)


    用C语言实现wc命令,统计文件的行数,字符数,词组数。楼主发的代码似乎并不是完整代码,但这些基本就是wc项目需求的。

    首先是添加单词,下面是代码://先记录单词,在运用指针指向他

    void addWord(char *w1) //添加单词
    {

    link *p1,*p2;
    //if(w1[0] <= 'Z' && w1[0] >= 'A') //转成小写字母
    //{
    // w1[0]+=32;
    //}
    for(p1=head;p1!=NULL;p1=p1->next) //判断单词在连表中是否存在
    {
    if(!strcmp(p1->w,w1))
    {
    p1->count++; //存在就个数加1
    return;
    }
    }

    p1=(struct word *)malloc(sizeof(word));//不存在添加新单词
    strcpy(p1->w,w1);
    p1->count=1;
    p1->next=NULL;
    count++; //总的单词数加加

    if(head==NULL)
    {
    head=p1;
    }
    else
    {
    for(p2=head;p2->next!=NULL;p2=p2->next);
    p2->next=p1;
    }
    }

    然后判断指向的是是不是字符或是其他
    int isnotWord(char a) //判断是否为字母
    {
    if(a <= 'z' && a >= 'a')
    {
    littleletter++;
    return 0;
    }
    else if(a <= 'Z' && a >= 'A')
    {
    bigletter++;
    return 0;
    }
    else if(a==' ')
    {
    space++;
    return 1;
    }
    else if(a>='1'&&a<='9')
    {
    number++;
    return 1;
    }
    else if(a==' ')
    {
    hang_num++;
    return 1;
    }
    else
    {
    other++;
    return 1;
    }

    }
    统计单词个数:
    #include <iostream>
    #include<cstdio>
    #include<cstdlib>
    using namespace std;
    //统计单词的个数
    int main()
    {
    char a;
    int count=0;
    while((a=getchar())!=' ')
    {
    if(a==' ')
    count++;
    }
    cout << count+1 << endl;
    return 0;
    }
    代码链接网址:https://github.com/TalosLin/QTL

  • 相关阅读:
    iterm2 配色修改
    让Dock自动 显示/隐藏 不再有延迟
    Xcode更改配色方案
    CocoaPods安装与使用
    CocoaPods安装和使用及问题:Setting up CocoaPods master repo
    CocoaPods安装和使用教程
    RubyGems 镜像
    iOS Mac系统下Ruby环境安装
    MAC机中安装RUBY环境
    Kibana+Logstash+Elasticsearch 日志查询系统
  • 原文地址:https://www.cnblogs.com/qian8949695/p/8179546.html
Copyright © 2020-2023  润新知