Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - main.c
Search - main.c - List
GIF87a的压缩,解压缩及一些工具的源代码,稍微修改就可以支持GIF89a, 可以在vc中使用,解码的话只需要一个文件DGIF_LIB.C(头文件还是需要的),加入工程中就可以使用,显示实例可以参考文件gif2herc.c中的main函数-GIF87a compression, decompression tools and the source code, it can be slightly modified to support GIF89a, the vc used, decoding the only one document DGIF_LIB.C (header files or need), join the project can use it, showing examples can reference document gif2herc.c the main function
Date : 2008-10-13 Size : 160.43kb User : pyh

GIF87a的压缩,解压缩及一些工具的源代码,稍微修改就可以支持GIF89a, 可以在vc中使用,解码的话只需要一个文件DGIF_LIB.C(头文件还是需要的),加入工程中就可以使用,显示实例可以参考文件gif2herc.c中的main函数-GIF87a compression, decompression tools and the source code, it can be slightly modified to support GIF89a, the vc used, decoding the only one document DGIF_LIB.C (header files or need), join the project can use it, showing examples can reference document gif2herc.c the main function
Date : 2025-12-19 Size : 160kb User : pyh

lzw,主要实现了压缩算法,代码比较精炼,大家可以下载,编译运行-lzw, the main compression algorithm, code more refined, we can download, compile operation
Date : 2025-12-19 Size : 1kb User : wei

基于c的huffman的编码实现 该程序实现了经典的huffman算法 同时能够给出编码效率-C Based on the huffman coding to achieve the program to achieve the classic algorithm huffman coding efficiency at the same time be able to give
Date : 2025-12-19 Size : 1mb User : 路敬

huffman 编码用C做,本代码主要实现的是对输入的一串英文字符进行统计,编码-huffman coding using C so, the main achievement of this code is the input of a string of English characters statistics, coding
Date : 2025-12-19 Size : 13kb User : 木木

用C#代码编写,主要是获取文件的具体信息!-With C# Coding, the main document is to obtain specific information!
Date : 2025-12-19 Size : 10kb User :

huffman coding and decoding adaptive huffman coding and decoding it is a assignment from my course and code is main-c decode is main-e hope it is useful for everybody
Date : 2025-12-19 Size : 2.39mb User : yuyu

Huffman树的C++实现,有可视化界面,主要是译码功能-Huffman tree of the C++ to achieve, there are visual interface, the main function is to decode
Date : 2025-12-19 Size : 413kb User : pf

一个用C编写的3字节浮点数转十进制的软件。-Written using a C-byte floating-point switch to three decimal software.
Date : 2025-12-19 Size : 2kb User : joansun

C++-China speaking C++为C++之父中国之行于清华北大的演讲稿另一份讲稿,以C++的设计者的身份,独到的介绍了C++的主要特征和优点-C++-China speaking C++ for C++ father' s trip to China, Tsinghua University Beijing University speech in a separate script to C++, the identity of the designer, unique introduction to the C++, the main features and benefits of ...
Date : 2025-12-19 Size : 170kb User : 万富元

用C#开发的网上书店,可以在网上进行购书,其主要功能包括注册会员,新闻浏览,图书查询,最新图书,购物车,在线客服,文件管理,会员管理,订单管理,新闻管理。-C# development of the online bookstore, online books, its main functions include registered member, press browse, search for a book, the latest books, shopping cart, online customer service, document management, membership management, order management, news management.
Date : 2025-12-19 Size : 4.58mb User : mrshuang

C功能主要执行文件概要题我们的题目好-Summary of the main executable file C function topic questions our good oh ah ah ah ah ah
Date : 2025-12-19 Size : 1kb User : 彭新科

主要内容: (1)将<AT89S51单片机试验及实践教程>里面的实验用Proteus仿真!!!!包括C语言的和汇编的!!! (2)加了注释(本人也是刚学的,可能有些错误,望提出!) 还加了部分与该实验有关的资料!! (3)将本人发现的原版中的问题加以改正.(里面还有小部分问题,目前仍然不明) -Main content: (1) inside the <AT89S51单片机试验及实践教程> experimental Proteus simulation!!!! Including the C language and assembly!!! (2) Add a comment (I was just learning, and there may be some mistakes, hope raised!) Also added a section with information relevant to the experiment!! (3) I found the problem to be corrected in the original. (There is also a small part of the problem, is still unknown)
Date : 2025-12-19 Size : 4.83mb User : hehe

单片机控制循迹小车程序,包括舵机的控制,小车主程序,传感器程序。经验证可以使用。-SCM control tracking car program, including steering gear control, car main sensor program. Proven available.
Date : 2025-12-19 Size : 3kb User : Mr_Wang

设电文字符集D及各字符出现的概率F如下: D={a,b,c,d,e,f,g,h}(字符数n=8) F={5,29,7,8,14,23,3,11}( ) 编写完成下列功能的程序: ①构造关于F的Huffman树; ②求出并打印D总各字符的Huffman编码。 程序结构: 类型说明; 构造Huffman树的函数:Huffman_tree(H[m+1]); 求Huffman编码的函数:Huffman_code(code[n+1]); main() { 变量说明; 输入字符集D及频率F; 调用Huffman_tree(H); 调用Huffman_code(code); 打印编码; Y 继续? N 停止 } -设电文字符集D及各字符出现的概率F如下: D={a,b,c,d,e,f,g,h}(字符数n=8) F={5,29,7,8,14,23,3,11}( ) 编写完成下列功能的程序: ①构造关于F的Huffman树; ②求出并打印D总各字符的Huffman编码。 程序结构: 类型说明; 构造Huffman树的函数:Huffman_tree(H[m+1]); 求Huffman编码的函数:Huffman_code(code[n+1]); main() { 变量说明; 输入字符集D及频率F; 调用Huffman_tree(H); 调用Huffman_code(code); 打印编码; Y 继续? N 停止 }
Date : 2025-12-19 Size : 101kb User : Kai

利用Huffman编码实现文件压缩解压的算法,改源码为C++面向过程的。主要是由函数组成,包括主函数、压缩函数、解压函数、界面函数。-Use Huffman encoding for file compression and decompression algorithms, change-oriented C++ source code for the procedure. It is mainly made up of functions, including the main function, the compression function, decompression functions, interface functions.
Date : 2025-12-19 Size : 3kb User : XCK

* 《手把手教你学51单片机(C语言版)》 * 配套 KST-51 单片机开发板 示例源代码 * * (c) 版权所有 2014 金沙滩工作室/清华大学出版社 保留所有权利 * 获取更多资料请访问:http://www.kingst.org * * 文件名:main.c * 描 述:第19章 多功能电子钟 工程主文件 * 版本号:v1.0.0 * 备 注:详情见第19章19.4节-* hands to teach you to learn 51 MCU (C language version) * KST-51 MCU development board sample source code * * (c) copyright 2014 Jinshatan studio/Tsinghua University press all rights reserved * for more information please visit: http://www.kingst.org * * file name: main.c * Description: the nineteenth chapter multi-function electronic clock project master file * version number: v1.0.0 * remarks: for details, see Chapter 19.4, section nineteenth
Date : 2025-12-19 Size : 21kb User : luteng
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.