Location:
Search - Volume 1
Search list
Description: 关于volume render 的实现,用matlab写的。
Platform: |
Size: 2534131 |
Author: AshleyDu2011@163.com |
Hits:
Description: Thinking in C++, 作者Bruce Eckel
volume 1 and volume 2, both are 2nd edition
本书作者根据自己学习C++的亲身体会及多年教学经验,用简单的例子和简练的叙述讲解C++编程,别具特色。 全书共分十八章,内容涉及对象的演化、数据抽象、隐藏实现、初始化与清除、函数重载与缺省参数、输入输出流介绍、常量、内联函数、命名控制、引用和拷贝构造函数、运算符重载、动态对象创建、继承和组合、多态和虚函数、模板和包容器类、多重继承、异常处理和运行时类型识别。 本书作为正式教材和自学用书均非常优秀,作为程序设计者的参考用书亦极为合适。
Platform: |
Size: 4377357 |
Author: hchchun |
Hits:
Description: 此软件比windows的音量控制器还好用!-This software than windows with the volume controller better!
Platform: |
Size: 1601536 |
Author: |
Hits:
Description: AdjustSound sample shows how to load and play a wave file using a DirectSound buffer and adjust its focus, frequency, pan, and volume
Platform: |
Size: 17408 |
Author: none |
Hits:
Description: 本程序支持音量的控制- This procedure support volume control
Platform: |
Size: 25600 |
Author: beckhan001 |
Hits:
Description: Unix Network Programming Volume 1,Third Edition The Sockets Networking API
Platform: |
Size: 5654528 |
Author: 小云 |
Hits:
Description: 计算多面体体积的程序源代码-calculating polygon volume of source code
Platform: |
Size: 120832 |
Author: 陈龙 |
Hits:
Description: UNIX® Network Programming Volume 1, Third Edition: The Sockets Networking API
Platform: |
Size: 5642240 |
Author: 张敬 |
Hits:
Description: Create a volume bar control similar to the one presented in the RealOne Player.
Platform: |
Size: 16384 |
Author: 江苏 |
Hits:
Description: 这是一个可以方便控制音量的程序,对于vc编程爱好者来说是个不错的示例-This is a convenient volume control procedures, vc programming enthusiasts is a good example
Platform: |
Size: 27648 |
Author: 吴军 |
Hits:
Description: 2D/3D Scene Graph rendering engine for Linux/Unix/Win32 layered atop OpenGL. Supports stereoscopy, volume rendering, 2D/3D texture mapping, picking, LOD and view-dependent operations, cross-platform text, constant-rate rendering and image-based data.
Platform: |
Size: 633856 |
Author: 约非 |
Hits:
Description: Infragistics.NetAdvantage.2005.Vol.1.Source.Code.Final
Platform: |
Size: 17971200 |
Author: 站长 |
Hits:
Description: VC编写的"音量控制"程序 简单但是很实用!-simple but useful. VC source code to control volumn
Platform: |
Size: 50176 |
Author: 袁耀辉 |
Hits:
Description: 很好的媒体播放器,该媒体播放器可以播放Wav和CD光盘。本章主要介绍多媒体相关知识。包括DirectX SDK进行多媒体开发,对混合器设备进行操作和访问,对音量进行获取与设置,播放Wav文件,打开和关闭CD设备,对CD进行播放、停止、前进、后退操作等。
-good media players, the media player that can play CD and Wav. This chapter introduces multimedia related knowledge. DirectX SDK include multimedia development, the mixer equipment operation and visit, for access to the volume and settings, players Wav document, open and close CD equipment, a CD player, stop, forward, back operation.
Platform: |
Size: 1169408 |
Author: |
Hits:
Description: 本章实现了一个简单的媒体播放器,该媒体播放器可以播放Wav和CD光盘。本章主要介绍多媒体相关知识。包括DirectX SDK进行多媒体开发,对混合器设备进行操作和访问,对音量进行获取与设置,播放Wav文件,打开和关闭CD设备,对CD进行播放、停止、前进、后退操作等。-chapter achieve a simple media player, the media player that can play CD and Wav. This chapter introduces multimedia related knowledge. DirectX SDK include multimedia development, the mixer equipment operation and visit, for access to the volume and settings, players Wav document, open and close CD equipment, a CD player, stop, forward, back operation.
Platform: |
Size: 1169408 |
Author: chen |
Hits:
Description: 欧洲一个学生写的作业,关于光线追踪体绘制的程序,很强-European students write an operation on ray tracing Volume Rendering procedures and strong!
Platform: |
Size: 210944 |
Author: 舞龙 |
Hits:
Description: 一个基于有限体积法的斜水跃水流动画模拟,使用OPengl工具,非常逼真。动画连续,对流体力学感兴趣的朋友一定有用哦!-a finite volume method based on the jump ramp water flow simulation animation, the use of tools OPengl, very lifelike. Animation for the hydrodynamics of friends interested in a certain useful!
Platform: |
Size: 2278400 |
Author: 童话 |
Hits:
Description: 实现背包问题
package problem
1. 问题描述
假设有一个能装入总体积为T的背包和n件体积分别为w1 , w2 , … , wn 的物品,能否从n件物品中挑选若干件恰好装满背包,即使w1 +w2 + … + wn=T,要求找出所有满足上述条件的解。例如:当T=10,各件物品的体积{1,8,4,3,5,2}时,可找到下列4组解: (1,4,3,2)、(1,4,5)、(8,2)、(3,5,2)。
2. 基本要求
读入T、n、w1 , w2 , … , wn
3.提示:
可利用递归方法:若选中w1 则问题变成在w2 , … , wn 中挑选若干件使得其重量之和为T- w1 ,若不选中w1,则问题变成在w2 , … , wn 中挑选若干件使得其重量之和为T 。依次类推。
也可利用回溯法的设计思想来解决背包问题。首先将物品排成一列,然后顺序选取物品装入背包,假设已选取了前i 件物品之后背包还没有装满,则继续选取第i+1件物品,若该件物品“太大”不能装入,则弃之而继续选取下一件,直至背包装满为止。但如果在剩余的物品中找不到合适的物品以填满背包,则说明“刚刚”装入背包的那件物品“不合适”,应将它取出“弃之一边”,继续再从“它之后”的物品中选取,如此重复,,直至求得满足条件的解,或者无解。
注:没压缩密码-knapsack problem achieve a package problem. Problem description one would assume that the total volume of loaded backpack and T n size pieces of w1, w2, ..., wn items Can n items from the selected pieces were just filled with backpacks, even w1 w2 ... wn = T, asked to identify all of the above conditions are met solution. For example : when T = 10, the volume of items (1,8,4,3,5,2), may find the following four solutions : (1,4,3,2), (1,4,5), (8,2), (3,5,2). 2. Basic requirements read T, n, w1, w2, ..., wn 3. Tip : Recursive methods can be used : If the problem were selected w1 into the w2, ..., wn selected several pieces make its weight and as a T-w1, if selected w1, w2 issue into the .... wn selected several pieces make its weight and as T. Renumbered accordingly. Retrospective can also u
Platform: |
Size: 9216 |
Author: 李昭明 |
Hits:
Description: 这是/
C/C++的经典著作。第一册(总共三册)值得一看。-/ C/C classics. Volume 1 (a total of three) is worth looking at.
Platform: |
Size: 53968896 |
Author: guotao |
Hits:
Description: Addison Wesley
UNIX.Network.Programming.Volume.1.3rd.Ed.The.Sockets.Networking.API
Platform: |
Size: 5824512 |
Author: patrick |
Hits:
« 12
3
4
5
6
7
8
9
10
...
50
»