CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 搜索资源 - C 单词

搜索资源列表

  1. jiangyutang_A0617389_homework1

    0下载:
  2. 分析一个英文文本文件中所有单词出现的频率,用linux下的标准c语言实现,是我的internet高级编程的第一次作业。编译后在可执行文件后跟上一个英文文本文件名字就可以了,程序会在屏幕打印出该文件中每个单词出现的次数。可以作为linux下的c语言学习例程使用。-an analysis of the English text document, all words, the frequency, linux using the standard c language, the internet i
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:1439
    • 提供者:糖糖
  1. findword

    0下载:
  2. 一个C语言来实现查找单词的程序,适合初学者
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:84977
    • 提供者:刘舒
  1. reciteword-0.8.4

    0下载:
  2. Linux系统下背单词软件的源代码,是学习C/C++编程的好源代码~
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:7667438
    • 提供者:cole
  1. chk

    0下载:
  2. 本程序主要可以对一个c语言程序中的括号和注释情况进行检查,可以快速地发现原程序 * 中隐含的语法匹配性错误,可以根据检查结果,对不匹配的括号进行修改,最快速度地将 * 程序修改正确。同时本程序也可以象wc程序一样对一个程序进行计数统计,得到一个文件 * 的行、单词、字节的统计结果。-this procedure can be a major c language program brackets and the inspection of the Notes can be found quick
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:2562
    • 提供者:李金明
  1. yufa

    0下载:
  2. 利用C语言编制递归下降分析程序,并对简单语言进行语法分析,实现对词法分析程序所提供的单词序列的语法检查和结构分析。-The use of C language drop analysis of recursive procedures, and simple language syntax analysis, the realization of the lexical analysis procedure provided by the grammar checker word sequenc
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-26
    • 文件大小:4045
    • 提供者:李鸿
  1. firstGTK

    0下载:
  2. 一个基于GTK+的单词数值计算器,1、 按照规则计算单词的值,如果 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 26个字母(全部用大写)的值分别为 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,如: WINJACK这个单词的值就为:W+I+N+J+A+C+K=23+9+14+1+3+11=71% HARDWORK=H+A+R+D+W+O+
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:1804
    • 提供者:
  1. qt

    0下载:
  2. 用c++和qt写的一个背单词软件,功能比较完善-it is very good
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-06-01
    • 文件大小:14150486
    • 提供者:杨与强
  1. 1111

    0下载:
  2. 在Linux上写的一个C程序,借助Lex做词法分析来同时统计N个文本文件的字符数,单词数和行数。-In Linux, written in a C program, using lexical analysis to the same time, Lex to do a statistical N number of characters in a text file, word count and the number of rows.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-09
    • 文件大小:1127
    • 提供者:xerxes
  1. wordscount-wc.c

    0下载:
  2. 多线程实现单词统计工具。允许线程使用互斥锁修改临界资源,确保线程间的同步与协作。-Multi-threading word statistical tools. Allows threads to use a mutex to modify the critical resources to ensure that inter-thread synchronization and collaboration.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-27
    • 文件大小:660
    • 提供者:fanshu
  1. we

    0下载:
  2. 在Linux环境下,实现文本单词的替换并通过Makefile实现自动编译。-Open a txt format file as input. You can create a simple testing file in English by yourself. Read each line in the file and do the following items at same time(case sensitivity). a) change al
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:4202
    • 提供者:FaLeFengLe
  1. Text-Query

    0下载:
  2. 利用c++编写的文本查询源程序。可对输入文本进行处理,完成响应单词检索功能。-the text query procedure in c++ can query the word in the text you imported.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-23
    • 文件大小:3846285
    • 提供者:song
  1. lda-c

    0下载:
  2. LDA是一种文档主题生成模型,也称为一个三层贝叶斯概率模型,包含词、主题和文档三层结构。文档到主题服从Dirichlet分布,主题到词服从多项式分布。 LDA是一种非监督机器学习技术,可以用来识别大规模文档集(document collection)或语料库(corpus)中潜藏的主题信息。它采用了词袋(bag of words)的方法,这种方法将每一篇文档视为一个词频向量,从而将文本信息转化为了易于建模的数字信息。但是词袋方法没有考虑词与词之间的顺序,这简化了问题的复杂性,同时也为
  3. 所属分类:Driver develop

    • 发布日期:2017-04-16
    • 文件大小:30689
    • 提供者:yangling
  1. Word

    0下载:
  2. Visual C++单词拼写检查器,以命令提示符窗口的形式运行,运行后你可以根据提示输入一段英文字母,本程序会检查你输入的单词拼写是否正确,暂时只支持英文单词的检查,不支持中文拼写检查。-Visual C++ spelling checker in the form of a command prompt window, run, run, you can follow the prompts to enter some letters of the alphabet, the program
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-09
    • 文件大小:1985790
    • 提供者:黄威霖
  1. 191-206

    0下载:
  2. C语言编写的几个程序源码,包括: 191 比较字符串长度 192 合并整数 193 矩阵逆置 194 删除指定的字符 195 括号匹配 196 字符串逆置 197 SIX/NINE问题 198 单词个数统计 199 方差运算 200 级数运算 201 输出素数 202 素数题 203 序列排序 204 整数各位数字排序 205 字符串字母移位 206 Fibonacc数列 -C language sourc
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-04
    • 文件大小:29723
    • 提供者:耿汝伟
  1. 字典项目

    0下载:
  2. 完成词典的注册,登录,查找单词,查看历史记录等等(Complete the dictionary registration, login, find words, view history, and so on.)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2017-12-21
    • 文件大小:488448
    • 提供者:zp_0717
搜珍网 www.dssz.com