搜索资源列表
数组排序算法改进版
- 这个程序的头文件中包含四种排序方法:泡沫排序法(bubble),插入排序法(insertion),快速排序法(quick)和选择排序法(selection)。头文件中还使用了模板技术,以便可以同时实现几种类型的排序算法。 dinimicky_hu对原程序做了修改和优化,使用了函数指针数组,并修改了一个BUG-The head file of this programme includes 4 methods of sorting : Bublle sorting,insertion sortin
Delphi 7.0常用函数速查手册
- 函数由一句或多句代码组成,可以实现某个特定的功能。使用函数可以使代码更加易读、易懂,加快编程速度及减少重复代码。过程与函数类似,过程与函数最重要的区别在于,过程没有返回值,而函数能有返回值。 在Delphi 7.0中,已为我们定义好了非常多的函数,大致分类有6种:数据类型转换函数、字符串、数组操作函数、文件、磁盘操作函数、内存、指针操作函数、数学运算函数、日期函数。-function sentence by one or more code components, can achieve a
DrakeCompiler
- 这可是我的倾情制作,离卖弄的语法分析器,是自己写的实现程序,不使用他人的结果,直接从原始语法里进行推理计算的,而且这个使用c语言实现的,很多底层函数都是自己来写,像hash表里的hash函数,还有像动态自增长分配等。当然这个还很不完善,但是已经作了很多工作,差就差在没有找到理想的脚本支持语言,最后没有办法只能用函数指针的数组来进行语义调用了。-this but my DEDECATES production, from the play of parser, written in their o
用函数指针对两数作四则运算
- 用函数指针做四则运算,文件不大,功能较全面,上传供参考-do with function pointers four computation, not paper, more comprehensive functions, uploads for reference
trubo_menu
- 使用turbo C写的多级菜单程序,主要用了函数指针,使程序简洁易懂,容易管理-use of written procedures for multi-level menu, the main function of the target process, easy to read, easy to manage
uCOSii_for_8951_EXT_64k
- uCOS2 for 51系列,已经在SST89E564上测试通过,实验板要求有64K扩展ram,根据原来网上公开版本修改而成,附带提供在C51中利用函数指针带参数传递调用汇编接口例子和一个简单的shell界面-uCOS2 for 51 series, in SST89E564 testing, Experimental board requires 64K ram expansion, according to the original version of the Internet open
The Function Pointer Tutorials
- 本文详细说明了C和C++中函数指针的语法和用途。并且举例说明了如何用函数指针来实现Callback函数。-paper detailed descr iption of C and C function pointer syntax and use. And to illustrate how to use the function pointer to achieve Callback functions.
func_ptr
- 一个函数指针的例子,C++语言,我在初学C++时写的,可以参考一下-a function pointer example, C language, I was learning C, can take a look
key_poiter_program
- 用指针函数实现最快最简单的按键控制程序。 // 按键的四种不同工作状态对应的函数指针对照表,每三字节对应一个按键 // 每一项包含三个字节,分别代表按键码,键盘状态,对应处理程序编号 // 本表对应于日常操作,不是修改状态-function pointer to achieve the quickest and most simple keypad control procedures. / / Button four different working conditions cor
TEST
- 关于C语言函数指针的使用,对于c语言初学者非常有帮助-Function pointer on the C language use, language for beginners c very helpful
11
- 指针函数和函数指针有什么区别 1,这两个概念都是简称,指针函数是指带指针的函数,即本质是一个函数。-Indicator function and the function pointer What is the difference between 1, these two concepts are referred to, is the indicator function with a function pointer, which is a function of nature.
C51FunctionPointer
- Keil C51下函数指针使用指南,即使是资深51工程师也可以看哦,收获不匪-Function pointer of Keil C51
xm10
- 学生成绩管理,采用C语言函数指针编写,调试通过。-Student performance management, use of C language function pointer write, debug through.
chengjiguanli
- 学生成绩管理:(结构体数组、函数、指针、算法、流程结构及文件等的综合应用) 程序说明:有N个学生,每个学生的数据包含学号(不重复)、姓名、三门课的成绩及平均成绩,试设计一学生成绩管理系统,使之能提供以下功能: -Student Score: (array of structures, functions, pointers, algorithm, process structure and the documents of the integrated application)
调用示例
- C#调用C++ dll, 包括结构体, 数组, 函数指针, 字符串等等(C# calls C++ DLL, including the structure, array, function pointer, string, and so on)
C之指针复杂解析
- int * (* (*fun) (int *)) [10]这是一个可能会让初学者感到头晕目眩,感到恐惧的函数指针的声明,在熟练掌握C/C++的声明语法之前,不学习一定的规则,想理解好这类复杂声明是比较困难的。 C/C++所有复杂的声明结构,都是由各种声明的嵌套构成的,如何理解复杂指针声明,右左法则是一个很著名,很有效的方法,不过,右左法则其实并不是C/C++标准里面的内容,它是从C/C++标准的声明规定中归纳出来的方法,C/C++标准声明规则,是用来解决如何创建声明的,而右左法则是用来解决
二重指针
- (1) 从静态存储区域分配。内存在程序编译的时候就已经分配好,这块内存在程序的整个运行期间都存在。例如全局变量,static 变量。 (2) 在栈上创建。在执行函数时,函数内局部变量的存储单元都可以在栈上创建,函数执行结束时这些存储单元自动被释放。栈内存分配运算内置于处理器的指令集中,效率很高,但是分配的内存容量有限。 (3) 从堆上分配,亦称动态内存分配。程序在运行的时候用malloc 或new 申请任意多少的内存,程序员自己负责在何时用free 或delete 释放内存。动态内存的生存期
C语言函数数组与指针
- 针对C语言数组、函数,以及最难的难点指针做出详细的讲解,本课件由清华尹成老师亲手制作,含金量高。(For the C language array, function, and the most difficult point of the pointer to make a detailed explanation, this courseware is made by Tsinghua Yin Cheng, with a high amount of gold.)
指向函数的指针
- 用指向函数的指针编写的定积分,并且可以检测是否在误差以内(Pointer to a function)
C#调用C++DLL(函数参数包含指针)
- C#调用C++DLL(函数参数包含指针)(C Shar call c plus plus's dll file demo.)