Location:
Search - 查字符
Search list
Description: 操作系统中的文件是通过文件目录项来管理的,为了管理和查找的方便,按层次把文件目录项组织起来,同一层上的目录构成该层上的目录,第一层为根目录,一下为各层子目录。 假设以一串字符代表一个文件,每个字符表示一个记录。 在建立上述目录结构的基础上,建立相应的管理系统并要求完成以下各项操作: 1. 一次建立各个文件 2. 查访两个用户的所有文件 3. 查访用户sun 是否有文件AB 4. 删除用户sun的文件AC,然后在分别查访两个用户的全部文件,检查是否已经删除文件AC 5. 撤销用户sun,并检查是否被删除 6. 删除用户sun的全部文件,然后在撤销sun用户,在查访用户sun, 检查其是否已被撤销。 在建立一个新用户及新用户的两个文件,然后查该两个用户的所有文件-operating system, the paper is to document catalog items to the management, in order to manage and facilitate the search, according to the document level directory entries organizations, the same floor on which constitute the directory contents on the floor, the first layer of the root directory to look for levels of subdirectories. Assuming that the representative of a string of characters, each character expressed a record. In establishing the directory structure on the basis of the establishment of a corresponding system of management and asked to accomplish the following : 1. Once established two separate files. Visits to the two users of all three documents. Sun user visits whether documents AB 4. Sun users to delete the documents AC, then two separate visits to all users of the docum
Platform: |
Size: 8501 |
Author: 葛林 |
Hits:
Description: 题目中给出了阿拉伯数字与罗马数字的对应关系,题中的数
字转换实际上就是查表翻译。即将整数的百、十、个位依次从整
数中分解出来,查找表中相应的行后输出对应的字符。
*程序与程序设计-title given Roman numerals and Arabic counterparts, and that the figure was actually Lookup conversion translation. The upcoming round of the 100, 10, 000-bit integers followed from decomposition, and lookup table corresponding output line counterparts of the characters. * Design process and procedures
Platform: |
Size: 1169 |
Author: 姚紫欣 |
Hits:
Description: 该词法分析程序用VC++ 6.0编写,以FileOpenDialog打开的*.c或*.cpp文件为语言字集的源程序作为词法分析程序的输入数据,经词法分析程序分析后的结果保存在源文件的同目录的output.txt文件中。在词法分析中,自文件头开始扫描源程序字符,一旦发现符合“单词”定义的源程序字符串时,将它翻译成固定长度的单词内部表示,并查填适当的信息表。经过词法分析后,源程序字符串(源程序的外部表示)被翻译成具有等长信息的单词串(源程序的内部表示),并产生两个表格:常数表和标识符表,它们分别包含了源程序中的所有常数和所有标识符。-the lexical analysis procedures used to prepare VC 6.0 to FileOpenDialog open *. c *. cpp documents or language character sets for the source as lexical analysis of the data entry process, the analysis of lexical analysis procedures after the results stored in the same source file directory paper output.txt . The lexical analysis, the first since the paper began scanning source characters, once found with "words" definition of the source string, it will be translated into fixed length of the internal word, and to identify the appropriate information filled table. After lexical analysis, source string (source said external) has been translated into information such as a long string of words (internal source said), and produce two forms : Constant table and table identifier, namely
Platform: |
Size: 203835 |
Author: 汤超 |
Hits:
Description: 从空格(ASCII码32)到~(ASCII码126)。表内的第一行与表头相同,下面的每一行都与上一行的内容相同,只是字符相左移动了一个位置。这样,下一行的最后一个字符与上一行的第一个字符相同。
为了进行文本编码,可以任意选择一个字符串,称之为编码字符串,也就是常说的密钥。为解释编码方法,我们假设密钥是Walrus,待编码的文本(即常说的明文)是:
Meet me in St. Louis
我们在待编码的文本之上重复书写上述密钥,使得其长度与待编码文本相同:
WalrusWalrusWalrusWa
Meet me in St. Louis
从上述两行文本中按列对应方式依次提取一个字符,可得到多个字符对:WM、ae、le等,这些字符对可用作上表的索引。这样,依次以这些字符对作为索引可从上表查到一系列字符,这些字符就构成了文本编码,即常说的密文。例如,第W行第M列队应得字符是%,因此编码的第一个字符就是%;第a行第e列对应的字符是G;第l行第e列对应的是R。依次进行上述查找操作,可以得到完整的密文
%Grgua=aVauGLol?eiAU
进行相反的操作就可对该文本解码。
编写编码/解码程序,可以对文本文件或键盘输入的字符串进行编码/解码,在选择编码解码后,需要提示用户输入密钥。
-from space (ASCII 32) to ~ (ASCII 126). The schedule of the first line with the same head table, each of the rows below the previous line with the same content. Character movement is a curator position. So, the next line of characters with a final party on the first character of the same. To text encoding, can choose an arbitrary string, the string as coding, which is often said that the key. To explain the encoding method, we assume that key is Walrus when coding the text (often said that an express) : Meet me in St.. Louis coding in question above the text written above key repeat, making its length and text encoding the same question : WalrusWalrusWalrusWa Meet me in St.. Louis from the above two OK text counterpart way out by the extraction followed a character, a number of characters
Platform: |
Size: 1879 |
Author: 梁清华 |
Hits:
Description: 写了一个词法分析器
这里以开始定义的PASCAL语言子集的源程序作为词法分析程序的输入数据。在词法分析中,自文件头开始扫描源程序字符,一旦发现符合“单词”定义的源程序字符串时,将它翻译成固定长度的单词内部表示,并查填适当的信息表。经过词法分析后,源程序字符串(源程序的外部表示)被翻译成具有等长信息的单词串(源程序的内部表示),并产生两个表格:常数表和标识符表,它们分别包含了源程序中的所有常数和所有标识符。-was a lexical analyzer here to start the definition of PASCAL language subset of the source points as lexical Analysis of the data entry process. The lexical analysis, the first since the paper began scanning source characters, Once found with "words" definition of the source string, it will be translated into fixed length of the internal word, check and fill the appropriate form. After lexical analysis, source string (source said external) has been translated into information such as a long string of words (source said the internal) , and produce two forms : Constant table and table identifier, namely contains the source of all the constants and all identifiers.
Platform: |
Size: 60231 |
Author: 陈剑峰 |
Hits:
Description: 一:问题描述
针对某个集体(比如你所在的班级)中的“人名”设计一个哈希表,使得平均查找长度不超过R,完成相对的建表和查表程序。
二:基本要求
假设人名为中国人姓名的汉语拼音形式。待填入哈希表的人名共有30个,取平均查找长度的上限为2。哈希函数用除留余数法构造,用伪随机探测再散列法处理冲突。
三:实现提示
如果随机函数自行构造,则应首先调整好随机函数,使其分布均匀。人名的长度均不超过19个字符(最长的人名如:庄双双(ZHAGN SHUANG SHUANG)。字符的取码方法可直接利用C语言中的tosacii函数,并可对过长的人名先作折叠处理。
四:需求分析
本演示程序是对哈希表的建立和查找进行演示,主要数据来自自己编写的人名“A~~Z”等字母组成,拼音由开头的字母组成的词组,查找时用伪随机探测再散列法处理冲突。随机产生人名的位置。具体的程序内容在源程序里面有比较详细的解析。程序的运行在下列有详细的介绍。
-one : Problem description against any collective (such as your own classes) of "names" design a hash table. you make the average length of not more than R, completes the construction and Lookup Table procedures. Two : the assumption that the basic requirements were known as the Chinese name of Chinese pinyin form. Hash Table question Enter the names of a total of 30, you take the average length of a maximum of two. Hash functions with a few exception I stay constructed using pseudo-random re-hash detection method to resolve disputes. 3 : Achieving suggested random function on its own if the structure should first be adjusted his random function, it evenly distributed. Names not on the length of more than 19 characters (the longest names such as : both Chong (ZHAGN SHUANG SHUANG).
Platform: |
Size: 2463 |
Author: wjs |
Hits:
Description: 嵌入式系统全拼输入法,拼音字符表及查表程序。-Embedded Systems Complete input method, phonetic characters and Lookup Table procedures.
Platform: |
Size: 10504 |
Author: wzm |
Hits:
Description: 移植到MCS51的uCOS_II。
1。在文件OS_CORE.C中OSMapTbl和OSUnMapTbl数组用于查表,所以应该放在code里。
增加code关键字。UCOS_II.H和OS_CORE.C。
2。OS_CFG.H堆栈大小MaxStkSize改为900。
3。OS_CPU_C.C的InitTimer0函数增加了关于开T0中断的解释。
允许T0中断,此时EA=0(51上电缺省值),中断还不会发生,满足在OSStart()前不产生中断的要求。
4。修改中断处理流程,以便严密监视中断嵌套情况。每个中断进入后立即进行OSIntNesting+1原语操作。
5。增加printf函数的移植,支持灵活的数据显示。支持标准或长二进制/八进制/十进制/十六进制/无符号整数,
支持字符、字符串、浮点数、百分号%。其中,浮点数在整个范围内被完全支持,统一采用科学记数法显示。
-transplanted to the MCS51 uCOS_II. 1. In the document which OSMapTbl OS_CORE.C and OSUnMapTbl array for Lookup, Therefore, it should be placed on code Lane. Increased code keyword. UCOS_II.H and OS_CORE.C. 2. OS_CFG.H MaxStkSize stack size to 900. 3. OS_CPU_C.C InitTimer0 function of the increase on the open T0 interrupted explained. Allow T0 interruption, this time EA = 0 (51 electricity default value), also will not be interrupted. meet the OSStart () do not have interrupted the former requirements. 4. Changes interrupt handling procedures, in order to closely monitor the situation interrupt nesting. Each interruption immediately after entering OSIntNesting a primitive operation. 5. Printf function to increase the transplant, support flexible data show. Support for standard or long binar
Platform: |
Size: 157834 |
Author: zhangk |
Hits:
Description: 这个小软件非常有用:ascii速查,提取字符的ascii码-small software very useful : ascii Check extract characters ascii codes
Platform: |
Size: 45918 |
Author: 朱明 |
Hits:
Description: C语言库函数速查[CHM文档]是一个很好的C语言函数查询器.属于CHM文档.
iscntrl
原型:extern int iscntrl(int c)
用法:#include <ctype.h>
功能:判断字符c是否为控制字符
说明:当c在0x00-0x1F之间或等于0x7F(DEL)时,返回非零值,否则返回零。-C language library functions Check [CHM documentation] is a very good C language function for inquiries. CHM belonging to the text Ref. iscntrl prototype : extern int iscntrl (int c) Usage : # include
Platform: |
Size: 83589 |
Author: 王敏 |
Hits:
Description: 对任意进程的内存数据进行分析、编辑的工具。全局内存操作;支持8种(字节、整数、长整数、单精度、双精度、货币、单字节字符、双字节字符)数据类型读写、搜索和查找;各数据间相互转换;可逆修改;即时查看和可抓取3个内存快照进行查找、对比或联合查找;也可查找连贯的一组数据;数据重复搜索;监视内存数据;保存和加载找查、搜索、监视和快照的内容;即时获取内存结构等功能,是制作外挂和破解软件的有力工具,也可以当作游戏修改器用。内存数据是电脑里很重要的部份,而且没有帮助,适合有内存方面基础的电脑玩家使用。 -right arbitrary process memory data analysis, editing tools. Global memory operation; Support eight species (byte, integer, long integer, single-precision and double precision, currency, single-byte characters, double byte characters) read and write data type, search and retrieval; among the data conversion; Irreversible changes; View and immediately grasp three Snapshot for you, contrast or joint search; may also find a consistent set of data; Search data duplication; Memory surveillance data; Loading for the preservation and investigation, search, surveillance and snapshots of content; immediate access memory structure function is to produce store and break the powerful software tools, can also change as the game makes use of. Memory is a computer data a very important part, but no help
Platform: |
Size: 174003 |
Author: ZhanK |
Hits:
Description: 自定义多目录替换字符工具
使用说明
1.要输入:替换对照文件
原文件目录 可以有子目录
保存文件目录 按原文件目录存放,会彼动建子目录
文件类型过滤 如*.sr*
2. 原文件目录和保存文件目录不能是在同一目录或子目录.
3.对替换对照文件
可以有分号 注释
查换文字与替换文字以逗号 , 分开
一个替换一行
行中无逗号或逗号前后有一方无文字也不会替换
查换文字与替换文字中的空格会自动清除.所以可以输入时不用在意空格
查找的文字不区分大小写,不按整单词查找
4.对照文件可如下输入:
注释文本说明
displays,显示
Micrsoft,微软
表的对照关系
--------------------------------
原表 新表
--------------------------------
syskind , DictType
syscode , DictCode
Platform: |
Size: 86512 |
Author: 郑汉武 |
Hits:
Description: 这里以开始定义的PASCAL语言子集的源程序作为词法分析程序的输入数据。在词法分析中,自文 件头开始扫描源程序字符,一旦发现符合“单词”定义的源程序字符串时,将它翻译成固定长度的单 词内部表示,并查填适当的信息表。经过词法分析后,源程序字符串(源程序的外部表示)被翻译成 具有等长信息的单词串(源程序的内部表示),并产生两个表格:常数表和标识符表,它们分别包含 了源程序中的所有常数和所有标识符。- Here starts the PASCAL language subset source program which
defines to take the lexical analyaer the data-in. In the lexical
analysis, starts from the article article to scan the source program
character, once discovered when conforms to \"the word\" the definition
source program character string, translates it the fixed length the
word interior to indicate, and looks up fills in the suitable
information table. After the lexical analysis, the source program
character string (source program exterior expression) is translated
has and so on the long information the word string (source program
internal expression), and produces two forms: The chart and the
identifier table, they have separately contained in source program all
constants and all identifiers.
Platform: |
Size: 1046 |
Author: 刘远兴 |
Hits:
Description: 可以从字串中提取字符和数字
Platform: |
Size: 169589 |
Author: mahusoft |
Hits:
Description: 字符转换,ASCII码转字符,字符转ASCII码,可查汉这内码-characters conversion, transfer ASCII characters to ASCII characters, Jehan within this code
Platform: |
Size: 33792 |
Author: 王伟 |
Hits:
Description: 嵌入式系统全拼输入法,拼音字符表及查表程序。-Embedded Systems Complete input method, phonetic characters and Lookup Table procedures.
Platform: |
Size: 10240 |
Author: wzm |
Hits:
Description: 自定义多目录替换字符工具
使用说明
1.要输入:替换对照文件
原文件目录 可以有子目录
保存文件目录 按原文件目录存放,会彼动建子目录
文件类型过滤 如*.sr*
2. 原文件目录和保存文件目录不能是在同一目录或子目录.
3.对替换对照文件
可以有分号 注释
查换文字与替换文字以逗号 , 分开
一个替换一行
行中无逗号或逗号前后有一方无文字也不会替换
查换文字与替换文字中的空格会自动清除.所以可以输入时不用在意空格
查找的文字不区分大小写,不按整单词查找
4.对照文件可如下输入:
注释文本说明
displays,显示
Micrsoft,微软
表的对照关系
--------------------------------
原表 新表
--------------------------------
syskind , DictType
syscode , DictCode-err
Platform: |
Size: 86016 |
Author: 郑汉武 |
Hits:
Description: 四字16*16点阵电子屏字符显示器
显示字用查表法,不占内存,用四个16*16共阳LED点阵显示,
效果:向上滚动显示字,每次四个,重复循环-Words, 16* 16 dot matrix electronics display screen characters in the word look-up table method used does not account for memory, with a total of four 16* 16 dot matrix LED display positive effect: upward rolling display characters, each of four, repeat cycle
Platform: |
Size: 3072 |
Author: 思考 |
Hits:
Description: 专门针对基于钩子技术、动态链接库(DLL)设计的一类特殊木马的查杀系统-Specifically for hook-based technology, dynamic-link library (DLL) designed a special kind of killing Trojans system
Platform: |
Size: 478208 |
Author: 原生态 |
Hits:
Description: 创建一个字符设备,可以在ARM板dev/目录下查找到(26/5000
Create a character device that can be found in the ARM board dev/ directory)
Platform: |
Size: 5120 |
Author: 离落城亻 |
Hits: