搜索资源列表
C语言难点分析整理!
- 这篇文章主要是介绍一些在复习C语言的过程中笔者个人认为比较重点的地方,较好的掌握这些重点会使对C的运用更加得心应手。此外会包括一些细节、易错的地方。涉及的主要内容包括:变量的作用域和存储类别、函数、数组、字符串、指针、文件、链表等。一些最基本的概念在此就不多释了,仅希望能有只言片语给同是C语言初学者的学习和上机过程提供一点点的帮助。
IcePubDLL api揭秘20110702
- icePubDLL揭秘20110702涉及:简单的Dailog界面输入输出、字符串函数、加密解密函数、编解码函数、一些实用的应用函数...
字符串搜索算法
- BF KMP BM 算法的实现及简单比较
mstar xgr 资源使用
- 包括菜单,字符串等工具使用方法
USB HID报告及报告描述符简介
- 在USB中,USB HOST是通过各种描述符来识别设备的,有设备描述符,配置描述符,接口描述符,端点描述符,字符串描述符,报告描述符等等。USB报告描述符(Report Descr iptor)是HID设备中的一个描述符,它是比较复杂的一个描述符。
搜集整理的计算24点的算法
- (24点算法)第一个算法是用C语言描述的,第二个是C++描述的,都是我在网上搜集整理的计算24点的算法,其中第二个最容易理解(递归的魅力),因为它用了string这种很方便的字符串流,第一种算法很复杂,我每次都要再看过,大家可以收藏起来慢慢品味~ ,(24-point algorithm) algorithm is first described by C language, the second is C++ are described, all my online collection
C
- 所谓排序是指把一组杂乱无章的数按 照大小顺序排列。包括整数、实数、字符及字符串排序。C语言编程中排序的方法 很多,?这里归纳较常用的几种排序方法。它们同样适合于其他高级语言。 -Refers to the so-called sort of a chaotic number according to the size of order. Including integer, real, character and string sorting. Sort of C language
udp简单通信
- linux下的udp 实现字符串的传输
PDUModel
- 解释了发送和接收的PDU字符串的各个组成部分,内容详细。-Explanation of the PDU to send and receive various components of the string, the contents in detail.
Text
- C语言环境下的文档编辑系统 实现了字符串的输出、删除、统计-C language environment of documents Editing System
HuffmanCode
- 赫夫曼编译码器 本系统将每一个要求的功能都作为一个独立的模块,值得注意的是,系统会自动统计您输入字符串中的每一个字符出现的频度,并将其作为对应字符的权值-HuffmanCode
hufman
- 程序实现如下功能:输入一段长度不超过100的字符串,将其进行霍夫曼编码并输出。将编好的霍夫曼码再次输入,输出解码后的字符串。-The program to achieve the following functions: enter a period does not exceed the length of the string of 100, Huffman encoded and output. The programmed the Huffman code again input, ou
Js字符串操作函数大全
- 关于JS 的各种函数,包括时间。日期格式等一些函数,非常的实用。
C-language-digital-rain-code.r
- C language strings to simulate rain program:用C语言编写的字符串模拟下雨的程序,C language digital rain code:C language strings to simulate rain program
zhuce0.1
- C#获取Access数据库所有表,代码如下: OleDbConnection conn = new OleDbConnection(connectionAccessString) // connectionAccessString是连接字符串 conn.Open() DataTable dt = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "TABLE
ParseFC
- 利用正则表达式 实现对特定字符串的判断与拆分存储-To use regular expressions to determine the specific string split storage
mowang-language
- 某个字符代表一个汉字,输入一段字符串,实现字符串翻译。-failed to translate
hwjs
- 华为2012年机试题,关于比较两个数组中不同元素个数,还有字符串运算,等等。-Huawei' s 2012 test machine, on comparing two different number of elements in the array, as well as string operations, and so on.
oracle-split
- 用于截取字符串,高难度截取,供大家参考。-For the interception of large quantities of string, and simplify user operation, powerful function, I hope a lot of advice, don t feel as much as, in addition to what can not upload
微机原理实验1:字符串匹配程序实验
- 一、实验目的 1.掌握分支程序的设计方法。 2.熟悉在PC机上建立、汇编、链接、调试和运行8086汇编程序的过程。 二、实验内容 1.比较两个字符串STRING1和STRING2所含的字符是否相同,若相同则显示‘Match’,否则显示‘No Match’。 2.修改程序,显示所比较字符的个数。