Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - bit c
Search - bit c - List
这是一个用C语言编写的计算器,源代码有点复杂,是我从网上找到的一个东东。-This is a C language of computers, the source code a bit complicated, I found an online Wanton.
Date : 2026-01-02 Size : 9kb User : 李想

12 bit da转换器dac7611驱动程序(C源程序)-da 12 bit converters dac7611 Driver (C source)
Date : 2026-01-02 Size : 1kb User : 华军

68K/386 32-bit C编译器 v1.35, 作者David Lindauer, gclind01@starbase.spd.louisville.edu-68K/386 32-bit C compiler v1.08. Author David Lindauer, gclind01@starbase.spd.louisville.edu
Date : 2026-01-02 Size : 182kb User : 罗鹏魁

DL : 0
一个捉虫子游戏(C++课程设计时做的)。 通过该实践来加深理解面向对象编程里类的设计和使用(比如说继承,访问方式),里还有定时器和随机数的使用。该程序是用控制台写的。界面有点难看。 -a catch insects games (C++ programs designed to do). The adoption of the practice to deepen our understanding of object-oriented programming category Lane in the design and use (for instance, inheritance, access method), they still have timers and the use of random numbers. The program is used to write the console. Interface a bit ugly.
Date : 2026-01-02 Size : 277kb User : 李冰海

哈夫曼(Huffman)编码压缩和解压缩程序 huffman.c 主要的功能模块 bitio.c/bitio.h 一些支撑函数,支持以比特(bit)为单位的文件I/O 用法: 压缩 huffman E <in-file> <out-file> 解压缩 huffman D <in-file> <out-file> 压缩时,读入<in-file>中内容,建立Huffman编码,将结果存入<out-file>中,得到压缩文件。 解压缩时,读入<in-file>中内容,恢复Huffman编码,将结果存入<out-file>中,得到原文件。 本代码在linux+gcc/windows+vc下经过测试,为了使读者容易理解算法本身, 算法实现中仅采用了简单的错误处理机制和优化。-Huffman (Huffman) encoding compression and decompression procedures huffman.c main functions module bitio.c/bitio.h some support function, support for bits (bit) for the File I/O usage : Huffman compression E
Date : 2026-01-02 Size : 1kb User : 冯灿科

DL : 0
一个OFDM系统的仿真程序,可看出信噪比与误码率之间的关系.-an OFDM system simulation program, we can see the signal-to-noise ratio and bit error rate of the relations between them.
Date : 2026-01-02 Size : 1kb User : huang

DL : 0
c++的一些源代码,有些挺简单的,有些还是有点难度的,所以比较适合学习用-c++ some source code, some quite simple, some are a bit difficult, so more suitable for learning to use
Date : 2026-01-02 Size : 6.46mb User : 林大为

DL : 0
汉化CLucene今天,把CLucene的程序改了一下,可以支持汉字了·1·在vc6编译2·还不支持分词,但支持汉字,-汉化CLucene Today, the procedures put CLucene changed a bit, you can support the Chinese characters one at vc6 compiler 2 do not support sub-word, but will support the Chinese characters,
Date : 2026-01-02 Size : 377kb User : 李彬彬

openmp版的banchmark,有点高深,我自己不太懂,希望对大家有所帮助啦! -openmp version of banchmark, a bit higher, I do not really understand, I hope all of you to help you!
Date : 2026-01-02 Size : 106kb User : cherry_nan

DL : 0
由两个文件组成的带密码的电话簿管理,调试中有点小小问题-By the two documents the telephone directory with the password management, and debug a small problem in a bit
Date : 2026-01-02 Size : 153kb User : 王建

CS8955控制TV软件。用MCU做模拟电视的控制。-CS8955+TV+TNJ7355(tuner).The CS8955 micro-controller is an 8051 CPU core embedded device targeted for LCD Monitor, LCD TV, Home Appliance, or Consumer Products application. The CS8955 is pin-out compatible with MCS-51 family .MCU. It includes an 8051 CPU core, a 64K-byte internal program Flash-ROM, a 512-byte SRAM, 6 channels of PWM DAC, and 4 channels of 6-bit ADC (Analog to Digital Converter). It also includes a Boot- Code-Free ISP (In System Programming), which allows users to update the programming codes easily. In addition, there are two IIC Slave B ports supporting VESA DDC 2B/2Bi/2B+/CI standards for both D-sub and DVI interfaces in LCD Monitor/TV application. An external 64K bytes data flash memory can be accessed by properly setting of Port 0, Port 2 and Port 3.6/3.7.
Date : 2026-01-02 Size : 565kb User : martinliao

DL : 0
一个进行按位存储的容器,BitVector,位向量。可以根据加入的数据自动改变容器大小,提供方便的访问接口。-Carried out by a digital storage containers, BitVector, bit vector. Automatically change the container s size when data be added, provide convenient access interface.
Date : 2026-01-02 Size : 2kb User : bupteinstein

DL : 0
c/c++面试题,很多经典的题,比如 /a和b交换面试题2.cpp //如何将a、b的值交换,并且不使用任何中间变量? //解析: //简而言之,用异或语句比较容易,不用担心超界的问题。 //如果采用: // a=a+b // b=a-b // a=a-b //这样做的缺点就是如果a,b都是比较大的两个数,a=a+b时就会超界。 //而采用: // a=a^b b=a^b a=a^b 无须担心超界的问题,这样就比较好。 //参与运算的两数个对应的二进制位相异或,当对应的二进制位相异时,结果为1。参与运算数仍以补码 //形式出现-c/c++ surface test, many of the classic title, such as/a and b exchanged face questions 2.cpp// how to a, b the value of the exchange, and do not use any intermediate variable?// Analysis:// In short, the use of different or expressions easier to not have to worry about the problem of super-sector.// If:// a = a+ b // b = ab // a = ab // of the shortcomings of doing so is that if a, b are two relatively large number, a = a+ b when super-sector.// Used:// a = a ^ b b = a ^ b a = a ^ b not have to worry about the problem of super-sector, so that is better.// Participate in a number of operations corresponding to the two binary bit different, or, when the corresponding binary bit different, the result is 1. Involved in computing the number of still meeting code// form
Date : 2026-01-02 Size : 11kb User : 武林

DL : 0
--1.实体和函数的定义 --2.自动计时部分 --3.设置调时时的四种状态:a.不调时,b.调时位,c.调分位,d.调秒位 --4.设置闪烁的位置,调哪部分,哪部分闪烁 --5.将该闪烁的部分执行闪烁命令 --6.调时间,小时,分钟,秒的调时进程 --7.用元件BCD把小时位,分钟位和秒位三部分连接在一起 --8.设置时区***该部分为选做,程序中已经注释掉*** --9.设置闹铃***该部分为选做,程序中暂时没写*** --10.设置7段数码管的显示位置 --11.数码管显示-- 1. Entities and function definitions - 2. Automatic timing part of it - 3. Set the tone from time to time of the four states: a. not transfer, when, b. when the transfer bit, c. transfer sub-spaces, d. tone seconds bit- 4. to set the location of blinking, adjusting which part, which part of the flashing- 5. the flashing part of the implementation of the flashing command- 6. transfer time, hours, minutes, seconds, when the process of adjustment- 7 . using devices to hours-bit BCD, minutes, seconds bit and bit three parts together- 8. set the time zone*** to do that part for the election, the program has been commented out***- 9. Set alarm*** This part is selected to serve as the program for the moment I did not write***- 10. set the 7-segment digital tube display position- 11. nixie tube display
Date : 2026-01-02 Size : 4kb User : wvqyd

DL : 0
一个非常简单但是很有用的小程序,可用来得到一个int型整数指定位数的二进制数,输入一个int型整数,程序会打印出1~32位及5~24位上的二进制(其它位补0),大家可以添加代码让功能更加完善,比如让用户自己输入指定的位数-A very simple but useful little program that can be used to get a int-type integer specified digit binary number, enter an int type integer, the program will print 1 to 32 and 5 ~ 24 on the binary (bit complement other 0), we can add code to allow more complete functionality, such as user input to specify the number of bits, etc.
Date : 2026-01-02 Size : 181kb User : echo

12位的MAX1247,介绍很详细,很值得一看-12-bit MAX1247, describes in great detail, it is worth a visit
Date : 2026-01-02 Size : 2kb User : 安秀杰

//PIC单片机滚动码解码C程序 // Interrupt based receive routine 基于中断的接收例程 // Compiled using HiTech PIC C compiler v.7.93 编译使用该PIC的C编译器v.7.93 #define CLOCK 4 // MHz #define TE 400 // us #define OVERSAMPLING 3 // #define PERIOD //TE/OVERSAMPLING*4/CLOCK #define NBIT 65 // number of bit to receive -1(HCS300 66-1=65)(Interrupt based receive routine)
Date : 2026-01-02 Size : 5kb User : jihh04

C language to program microcontrollers
Date : 2026-01-02 Size : 3.31mb User : Nabil

可编译uCOS代码的borland c++ 编译器3.1版 可直接用来编译生成16位程序(The 3.1 version of the Borland c++ compiler that compiles uCOS code Can be used directly to compile and generate 16 bit programs)
Date : 2026-01-02 Size : 1.69mb User : TolerateQwQ

64位C++读写驱动,今天翻硬盘翻出来的(64 bit C + + read and write driver)
Date : 2026-01-02 Size : 12kb User : Yisena
« 12 3 4 5 6 7 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.