-
快播的开源代码
快播的开源代码,包含windows界面,c++编程语言,支持点对点下载,支持p2p协议,上传为压缩包,解压后可以看到源码,欢迎交流学习,谢谢下载
- 2022-02-14 09:38:05下载
- 积分:1
-
最新的杀人游戏的源代码
来源于84源码下载站,请不要恶意传播,...
最新的杀人游戏的源代码
来源于84源码下载站,请不要恶意传播,-The latest killings came from the source code of the game Download the source station 84, please do not malicious dissemination,
- 2023-02-11 15:00:03下载
- 积分:1
-
fastreport4 new version, update for design
fastreport4 new version, update for design
- 2022-08-10 12:34:18下载
- 积分:1
-
regular expression syntax processing software demonstrations illustrate the oper...
表达式语法处理过程说明 这个软件演示了基于操作符优先级的表达式处理算法,属于很经典的算法。详细的演示了处理过程的每个动作以及辅助栈、表的使用。对学习《编译原理》和《数据结构》中的相关内容会有所帮助。 关于此算法的详细描述请见《数据结构》(清华出版社)。 软件使用方法,可以直接采用程序样例中的表达式(-9.3*((8+2-3*6/2-0.8)+(-64))),也可以在表达式输入的文本框中输入一个新的表达式(限数字、基本运算符、括号),先点击“初始化计算”按钮,然后点击“演示”按钮,每次一步。在此过程中,请观察“操作符号栈”、“操作数栈”、“操作数对照表”的变化情况,以及每次读取的当前词和当前动作。 题外话:觉得许多软件开发人员有一种只重视程序语言和技巧,而忽视算法设计的倾向。记得有个很出名的说法:程序=算法+数据结构。当然现在软件领域出现了许多新的动向,但基本功仍应重视。颖易教育软件工作室主页:http://www.yingyi.net电子邮件:yingyi@yingyi.net,true_yingyi@etang.com电话:(010)63522531-regular expression syntax processing software demonstrations illustrate the operator based on the priority of expression processing algorithm, a very classic algorithms. A detailed demonstration of the process every movement and auxiliary stack, table use. The study "Compiler Principle" and "data structure" of the content will be helpful. This algorithm on a detailed description, see "Data Structure" (Tsinghua University Press). Use of the software can be used directly in the sampl
- 2022-03-19 01:12:37下载
- 积分:1
-
向用户界面线程发送消息
向用户界面线程发送消息-to the user interface thread Send Message
- 2023-05-13 00:25:02下载
- 积分:1
-
procedures with the greedy algorithm to solve 0
该程序用贪心算法来求解0-1背包问题 采用贪婪准则:每次选择p/w最大的物品放入背包。-procedures with the greedy algorithm to solve 0-1 knapsack problem using greed criteria : Each choice p/w largest goods Add backpack.
- 2022-05-19 21:23:22下载
- 积分:1
-
一个简单的电网整定计算软件
一个简单的电网整定计算软件-a simple grid computing software tuning
- 2022-07-01 10:49:11下载
- 积分:1
-
vb.net的SMS程序之间的PPC使用蓝牙技术准备…
VB.NET编写的利用蓝牙技术在PPC之间发短信的程序-VB.NET prepared by the use of Bluetooth technology in the PPC between SMS procedures
- 2022-02-10 15:01:41下载
- 积分:1
-
VC毛玻璃
#define GDIPVER 0x0110 //定义高版本的GDI+(1.1)
#include
#include
#include
#include
#include
#pragma comment(lib,"GdiPlus.lib")
using namespace Gdiplus;
#include
#pragma comment(lib,"dwmapi.lib")
//Aero效果是否已启用
BOOL IsCompositionEnabled()
{
BOOL bEnabled,bResult;
bResult = (SUCCEEDED(DwmIsCompositionEnabled(&bEnabled)) && bEnabled);
return bResult;
}
//对已分层的窗口启动玻璃效果
HRESULT EnableBlurBehindWindow(HWND hWnd, //窗口句柄
BOOL bEnable = TRUE, //启用或禁用
HRGN hRgn = 0, //模糊窗体中某个区域
BOOL bTransitionOnMaximized = FALSE) //最大化时是否启用
{
DWM_BLURBEHIND blurBehind = { 0 };
blurBehind.dwFlags = DWM_BB_ENABLE | DWM_BB_TRANSITIONONMAXIMIZED;
blurBehind.fEnable = bEnable;
blurBehind.fTransitionOnMaximized = bTransitionOnMaximized;
if (bEnable && hRgn != NULL)
{
blurBehind.dwFlags |= DWM_BB_BLURREGION;
blurBehind.h
- 2023-05-01 15:10:04下载
- 积分:1
-
VC和directX
粒子系统由大量的粒子构成,系统中的粒子按照一定的规律进行不规则运动以及颜色变换。使用不同数量、不同运动状态的粒子系统,就能够模拟出火焰、雨雪、波浪等常见的一些效果。
通常粒子系统在三维空间中的位置与运动是由发射器控制的。
- 2023-07-10 20:35:07下载
- 积分:1