资源列表
10063
- acm 10063 source code
ConnectGBDForm
- arcengine连接数据库 对于初学者很有用-arcengine connect to GDB
teacher
- 分别定义教师类Teacher和干部类Cadre,采用多重继承的方式由这两个类派生出新类Teacher_Cadre(教师兼干部类)。要求: (1)在两个基类中都包含姓名、年龄、性别、地址、电话数据成员。 (2)在Teacher类中还包含数据成员职称title,在Cadre类中还包含数据成员职务post,在Teacher_Cadre类中还包含数据成员工资wage。 (3)对两个基类中的姓名、年龄、性别、地址、电话数据成员用相同的名字,在访问这类数据成员时,指定作用域。 (4)在类体中
dan-lian-biao--CPP
- 数据结构课程中,单链表的插入和删除,适合初学者!- Data Structures course, a single list insertions and deletions, suitable for beginners!
webservice
- 用来开发windows服务,后台运行,不需要为用户显示前台页面信息,实现相应的功能和操作。-windows service
Decimal-to-binary
- 十进制转为二进制,输入任意的十进制数就可以准确的转化为二进制-Decimal to binary
gir
- 一个小游戏,供大家娱乐使用。如果觉得太简单自己可以修改一下参数。-A small game, fun for everyone to use. If we think that is too simple argument that they can change it.
p
- 此程序采用直接生成回文数的方法,高效地实现回文素数问题-This program uses a direct method to generate palindrome, palindromic primes efficient implementation issues
work17
- 这是用于将一串字符串中重复的字符删除,采用的是指针方法-This is used to repeat a string of characters in the string to delete, using the pointer method
Fibonacci
- 斐波那契数列,又称黄金分割数列,指的是这样一个数列:0、1 、2、3、5、8、13、21、-In mathematics, the Fibonacci numbers or Fibonacci series or Fibonacci sequence are the numbers in the following integer sequence.
2
- 画图,综合例子,只要掌握就可以轻松学会画图,而且还可以灵活掌握c语言-Paint, comprehensive examples, as long as you can easily learn to master drawing, but also be flexible c language
Integer-change
- 整数变换问题。关于整数i的变换f和g定义如下:f(i)=3i;g(i)=ë i/2û 。 试设计一个算法,对于给定的2 个整数n和m,用最少的f和g变换次数将n变换为m。 例如,可以将整数15用4 次变换将它变换为整数4:4=gfgg(15)。当整数n不可能变换 为整数m时,算法应如何处理?