资源列表
CSharp
- C#语言开发的一个学生成绩管理系统,内含源码及论文。-C# language to develop a student management system, including source code and papers.
friend
- 友元 编写C++程序完成以下功能: 定义一个Boat和Car两个类,他们都具有私用属性——重量; 编写一个函数,计算两者的重量和。 double TotalWeight(Boat& b, Car& c) -Friend write C++ program to perform the following functions: define a Boat and Car two classes, they have private property- weight write
VC++经典游戏
- 这是一些很好的vc++编程实例,各种小游戏,与windows的基本一模一样哦,功能很强大
Button-And-List
- 应用程序,其主窗口如图10-3所示,标题为“按钮与列表”。在这个窗口中,包含有三个标题,分别为Check Box、Radio Box和Combo Box的分组框。在Check Box分组框中,包含两个复选框Date和Time,以及Enable、Disable、Show Again和Hide the Clock Setting四个按钮;在Radio Box分组框中,含有两个子分组框、一个按钮和一个编辑框,子分组框名字分别为Sex Selecting和Age Range,它们分别包含了一组单选按钮,
WPFPpicview
- wpf 做的图片浏览器,效果有:阴影、多点、支持滑动、可放大缩小,旋转等等。功能一定OK-wpf do the picture browser, effect: shadows, multi-point support slide, zoom, rotate and so on. Feature some OK
R330-L-CSharp
- 明华敖汉urf-330接口代码, 这是C#版的。-Minghua card reader R330-L demo, C# version.
treelist view src
- WPF项目:Datagrid + Treeview 的强大控件,开源,使用简单-WPF project: the Datagrid+ Treeview powerful controls, open source, easy to use
SourceGrid4_20
- C# Grid 开源控件,类似于Excel表格-C# Grid
waituigai.rar
- 基于格子玻尔兹曼方法模拟泊肃叶流,边界条件用非平衡格式,Poiseuille flow based on the lattice Boltzmann method to simulate the boundary conditions with unbalanced format
VisiFire
- VisiFire开源库,可在应用中绘制出超炫的图表-VisiFire open source library in stunning charts map out applications
exampleSR
- 基于例子的图像超分辨率重构算法,很好的解决了经典超分辨率的限制-Example-based super-resolution image reconstruction algorithm, a good solution to the classic super-resolution limit
compiler
- 本编译器主要有四部分功能: 1、词法分析 编制一个读单词过程,从输入的源程序中,识别出各个具有独立意义的单词,即基本保留字、标识符、常数、运算符、分隔符五大类。并依次输出各个单词的内部编码及单词符号自身值。(遇到错误时可显示“Error”,然后跳过错误部分继续显示)。 2、语法分析之递归下降分析 递归下降分析法的前提是文法必需为LL(1)文法,此功能为验证性功能,已经给出文法,输入一符号串,验证是否属于该文法的句子即可。 3、语法分析之LL(1)预测分析 此