登录
首页 » Visual C++ » Source

Source

于 2009-10-07 发布 文件大小:1124KB
0 169
下载积分: 1 下载次数: 4

代码说明:

  科学与工程数值计算算法(Visual C++版),全是代码(Science and Engineering numerical calculation algorithm (Visual C++ version), all the code)

文件列表:

Source
......\autorun.inf
......\Chapter1
......\........\ComplexCalculator
......\........\.................\Complex.cpp
......\........\.................\Complex.h
......\........\.................\ComplexCalculator.aps
......\........\.................\ComplexCalculator.clw
......\........\.................\ComplexCalculator.cpp
......\........\.................\ComplexCalculator.dsp
......\........\.................\ComplexCalculator.dsw
......\........\.................\ComplexCalculator.h
......\........\.................\ComplexCalculator.ncb
......\........\.................\ComplexCalculator.opt
......\........\.................\ComplexCalculator.plg
......\........\.................\ComplexCalculator.rc
......\........\.................\ComplexCalculatorDlg.cpp
......\........\.................\ComplexCalculatorDlg.h
......\........\.................\ReadMe.txt
......\........\.................\res

......\........\.................\...\ComplexCalculator.rc2
......\........\.................\resource.h
......\........\.................\StdAfx.cpp
......\........\.................\StdAfx.h
......\Chapter2
......\........\MatrixCalculator
......\........\................\Complex.cpp
......\........\................\Complex.h
......\........\................\Matrix.cpp
......\........\................\Matrix.h
......\........\................\MatrixCalculator.aps
......\........\................\MatrixCalculator.clw
......\........\................\MatrixCalculator.cpp
......\........\................\MatrixCalculator.dsp
......\........\................\MatrixCalculator.dsw
......\........\................\MatrixCalculator.h
......\........\................\MatrixCalculator.ncb
......\........\................\MatrixCalculator.opt
......\........\................\MatrixCalculator.plg
......\........\................\MatrixCalculator.rc
......\........\................\MatrixCalculatorDlg.cpp
......\........\................\MatrixCalculatorDlg.h
......\........\................\ReadMe.txt
......\........\................\res

......\........\................\...\MatrixCalculator.rc2
......\........\................\resource.h
......\........\................\StdAfx.cpp
......\........\................\StdAfx.h
......\Chapter3
......\........\LECalculator
......\........\............\Complex.cpp
......\........\............\Complex.h
......\........\............\ImagDataDlg.cpp
......\........\............\ImagDataDlg.h
......\........\............\LECalculator.aps
......\........\............\LECalculator.clw
......\........\............\LECalculator.cpp
......\........\............\LECalculator.dsp
......\........\............\LECalculator.dsw
......\........\............\LECalculator.h
......\........\............\LECalculator.ncb
......\........\............\LECalculator.opt
......\........\............\LECalculator.plg
......\........\............\LECalculator.rc
......\........\............\LECalculatorDlg.cpp
......\........\............\LECalculatorDlg.h
......\........\............\LEquations.cpp
......\........\............\LEquations.h
......\........\............\Matrix.cpp
......\........\............\Matrix.h
......\........\............\ReadMe.txt
......\........\............\res

......\........\............\...\LECalculator.rc2
......\........\............\resource.h
......\........\............\StdAfx.cpp
......\........\............\StdAfx.h
......\Chapter4
......\........\NLequationCalculator
......\........\....................\Complex.cpp
......\........\....................\Complex.h
......\........\....................\LEquations.cpp
......\........\....................\LEquations.h
......\........\....................\Matrix.cpp
......\........\....................\Matrix.h
......\........\....................\NLequation.cpp
......\........\....................\NLequation.h
......\........\....................\NLequationCalculator.aps
......\........\....................\NLequationCalculator.clw
......\........\....................\NLequationCalculator.cpp
......\........\....................\NLequationCalculator.dsp
......\........\....................\NLequationCalculator.dsw
......\........\....................\NLequationCalculator.h
......\........\....................\NLequationCalculator.ncb
......\........\....................\NLequationCalculator.opt
......\........\....................\NLequationCalculator.plg
......\........\....................\NLequationCalculator.rc
......\........\....................\NLequationCalculatorDlg.cpp

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论


0 个回复

  • HackerDisassemblingUncovered
    黑客反汇编大解密,一本介绍反汇编知识的好书,例子深入浅出,适合有一定汇编基础的人员(Hacker disassembly Uncovered, a book about disassembling, easy to understand examples for someone who knows some assembling)
    2010-05-10 09:54:04下载
    积分:1
  • huffman
    哈夫曼编码进行信息通讯可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求在发送端通过一个编码系统对待传数据预先编码;在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双向传输信息的信道),每端都需要一个完整的编/译码系统,试为这样的信息收发站写一个哈夫曼编译码系统。 一个完整的系统应具有以下功能: (1) (1) I: 初始化。从终端读入字符集大小 n ,及 n 个字符和 n 个权值,建立哈夫曼树,并将其存于文件hfmtree中。 (2) C: 编码。利用已建好的哈夫曼树(如不在内存,则从文件hfmtree中读入),对文件tobetrans中的正文进行编码,然后将结果存入文件codefile中。 (3) D: 译码。利用已建好的哈夫曼树将文件codefile中的代码进行译码,结果存入文件textfile中。 (4) P: 打印代码文件。将文件codefi1e以紧凑格式显示在终端上,每行50个代码。同时将此字符形式的编码文件写入文件codeprint中。 (5) T:打印哈夫曼树。将已在内存中的哈夫曼树以直观的方式(树或凹凸表形式)显示在屏幕上,同时将此字符形式的哈夫曼树写入文件treeprint中。 (利用哈夫曼编码进行信息通讯可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求在发送端通过一个编码系统对待传数据预先编码;在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双向传输信息的信道),每端都需要一个完整的编/译码系统,试为这样的信息收发站写一个哈夫曼编译码系统。 一个完整的系统应具有以下功能: (1) (1) I: 初始化。从终端读入字符集大小 n ,及 n 个字符和 n 个权值,建立哈夫曼树,并将其存于文件hfmtree中。 (2) C: 编码。利用已建好的哈夫曼树(如不在内存,则从文件hfmtree中读入),对文件tobetrans中的正文进行编码,然后将结果存入文件codefile中。 (3) D: 译码。利用已建好的哈夫曼树将文件codefile中的代码进行译码,结果存入文件textfile中。 (4) P: 打印代码文件。将文件codefi1e以紧凑格式显示在终端上,每行50个代码。同时将此字符形式的编码文件写入文件codeprint中。 (5) T:打印哈夫曼树。将已在内存中的哈夫曼树以直观的方式(树或凹凸表形式)显示在屏幕上,同时将此字符形式的哈夫曼树写入文件treeprint中。 )
    2010-03-09 12:14:21下载
    积分:1
  • LiarbryManagentSystem
    图书管理系统,分管理者和读者不同权限,可实现对书籍的管理,读者的管理等(Library management system, sub-managers and readers with different permissions)
    2012-05-09 22:06:26下载
    积分:1
  • IDA
    IDA简易入门教程,反汇编程序工具的使用(IDA simplified form for beginners tutorials, disassembler the use of tools)
    2020-07-02 16:00:02下载
    积分:1
  • DMX512
    DMX512数据协议、DMX512控制协议及其实现、舞台灯光控制技术与DMX512(DMX512 data protocol, DMX512 control protocol and its implementation, stage lighting control technology and DMX512)
    2020-10-10 14:37:34下载
    积分:1
  • m8-hongwaiyaokxiaoc
    这是一个红外遥控小车的程序,已调试通过,用在avr单片机上(This is an infrared remote-control car procedures have been debugging through, used in single-chip on avr)
    2008-12-19 18:49:57下载
    积分:1
  • Advertising-lights
    这是利用C语言和汇编语言编译的利用取表方式设计的广告灯(This is done using C and assembly language compiled table designed in a way to take advantage of advertising lights)
    2015-12-01 21:44:05下载
    积分:1
  • snow
    vb模拟雪花,想要电脑屏幕上有令人动容的雪花吗,想不到vb也能做到(vb simulated snow, want to have a computer screen you moving snow, can not think can be done vb)
    2009-04-22 11:52:04下载
    积分:1
  • jiansheyinhan
    一个银行的提款程序。提款机的程序编译,提款机如何操作!(A bank ATM procedures. Teller machines to compile the program, how to operate teller machine!)
    2008-06-26 13:06:32下载
    积分:1
  • fanhuibian
    黑客反汇编解密书籍,pdf版本,想要学习逆向的可以看一看。(Hacker disassembly decryption books, pdf version, want to learn the reverse can look.)
    2014-01-09 09:59:32下载
    积分:1
  • 696518资源总数
  • 105395会员总数
  • 22今日下载