虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

C<b>语言</b>编程

  • 大学本科的课程设计

    大学本科的课程设计,源码统计器,主要用来统计源程序类型,总代码行数,注释行数等,可适用于C,C++,Java语言。

    标签: 大学

    上传时间: 2014-07-02

    上传用户:lizhen9880

  • 糖果机的取糖程序

    糖果机的取糖程序,用于初学者学习c++的面向对象编程的好例子的源程序!

    标签: 程序

    上传时间: 2013-12-26

    上传用户:1051290259

  • 口通信 VC 完整串口通信程序Vc++源代码 串口通讯 vc++ 源代码 vc 串口通信 串口通信 mfc 通信 发送程序 vc++ 串口 VC 串口通信程序 完整串口通信程序Vc 源代码 VC串口通

    口通信 VC 完整串口通信程序Vc++源代码 串口通讯 vc++ 源代码 vc 串口通信 串口通信 mfc 通信 发送程序 vc++ 串口 VC 串口通信程序 完整串口通信程序Vc 源代码 VC串口通信 窜口通信程序 《Visual C /Turbo C串口通信编程实践》 vc 接受串口数据 vc 串口通讯 代码 串口 发送

    标签: vc 串口通信 程序 VC

    上传时间: 2014-01-03

    上传用户:star_in_rain

  • Viterbi Decoding Techniques in the TMS320C54x Family code 即是TMS320C54x实现VIterbi译码

    Viterbi Decoding Techniques in the TMS320C54x Family code 即是TMS320C54x实现VIterbi译码,是C与汇编混合编程,相信学习通信的又要用DSP来实现的人,一定会惊喜的

    标签: 320C Techniques 320 C54

    上传时间: 2014-10-27

    上传用户:shinesyh

  • 稳定性是衡量软件系统质量的重要指标

    稳定性是衡量软件系统质量的重要指标,内存泄漏是破坏系统稳定性的重要因素。由于采用垃圾回收机制,Java语言的内存泄漏的模式与C++等语言相比有很大的不同。全文通过与C++中的内存泄漏问题进行对比,讲述了Java内存泄漏的基本原理,以及如何借助Optimizeit profiler工具来测试内存泄漏和分析内存泄漏的原因,在实践中证明这是一套行之有效的方法。

    标签: 稳定性 指标 软件系统 质量

    上传时间: 2013-12-27

    上传用户:ddddddos

  • 在为Linux开发应用程序时

    在为Linux开发应用程序时,绝大多数情况下使用的都是C语言,因此几乎每一位Linux程序员面临的首要问题都是如何灵活运用C编译器。目前Linux 下最常用的C语言编译器是GCC(GNU Compiler Collection),它是GNU项目中符合ANSI C标准的编译系统,能够编译用、C++和Object C等语言编写的程序。GCC不仅功能非常强大,结构也异常灵活。最值得称道的一点就是它可以通过不同的前端模块来支持各种语言,如Java、 Fortran、Pascal、Modula-3和Ada等。开放、自由和灵活是Linux的魅力所在,而这一点在GCC上的体现就是程序员通过它能够更好地控制整个编译过程。

    标签: Linux 应用程序

    上传时间: 2013-12-22

    上传用户:TF2015

  • 本书基于MATLAB 5.2版

    本书基于MATLAB 5.2版,提供了使用MATLAB的实践性指导。MATLAB已成为适合多学科、多种工作平台的功能强大、界面友好、语言自然并且开放性强的大型优秀应用软件,同时也已成为国内外高等院校高等数学、数值分析、数字信号处理、自动控制理论以及工程应用等课程的基本教学工具。本书按逻辑编排,自始至终用实例描述;内容完整且每章相对独立;是一本简明的MATLAB参考书,既适用于初学者,也适用于高级MATLAB用户。对MATLAB与FORTRAN、C等语言结合的描述更是所有MATLAB书籍中少有的一大特色。 本书适合作为理工科高等院校研究生、本科生教学用书,也可作为广大科研工程技术人员的自学用书。

    标签: MATLAB 5.2

    上传时间: 2013-12-08

    上传用户:电子世界

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    标签: represented integers group items

    上传时间: 2016-01-17

    上传用户:jeffery

  • The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical)

    The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).

    标签: converts Toolbox complex logical

    上传时间: 2016-02-12

    上传用户:a673761058

  • 这是一本数据结构算法的书

    这是一本数据结构算法的书,是用C语语言描述的。

    标签: 数据结构 算法

    上传时间: 2016-02-14

    上传用户:dreamboy36