搜索资源列表
-
0下载:
C/C++常用的数据结构类
包括:
array.h: 安全数组,可自动增长大小(随机访问,但扩充时效率低)
linkedlist.h: 普通链表(可随机访问,但访问效率低)
dclinkedlist: 双向循环链表(不可随机访问,但插入、遍历的效率都比普通链表高)
hashtable.h: 哈希表(使用键值标识元素,键值一样的元素即认为相等,需重载 == 运算符并由用户定义哈希函数)
binstree.h: 二叉搜索树(需重载 == 和 < 运算符)
avltr
-
-
0下载:
用循环链表实现的多项式 包括 运算符及io重载-By cyclic list, including the realization of a polynomial operator overloading and io
-
-
0下载:
设计一个用于检查数组在使用时下标是否越界的类,如越界给出提示。(知识点:下标运算符的重载)。-Used to check the design of a current array subscr ipt is in the use of cross-border class, such as cross-border give tips. [Knowledge points: subscr ipt operator overloading].
-
-
0下载:
多项式运算的C++实现 包括加减乘除四种多项式运算 用到了友元等概念 对运算符实现了重载 代码均调试通过-Polynomial arithmetic C++, including addition, subtraction polynomial expression of four other friend uses the concept of operator overloading to achieve the code and debugging through
-
-
0下载:
自己编写的二叉查找树,分享给想学数据结构的开发人员。包括节点插入、节点删除、最大值,最小数值,后继元素,重载标准输出操作符……
-I have written a binary search tree data structure wants to learn to share the development of staff. Including node insertion, node deletion, the maximum value, minimum value, subsequ
-
-
0下载:
多项式加法和乘法运算的设计与实现分析元素关系,
选择存储表示方法,使用单链表已有的成员函数实现多项式的相加运算,重载+、>>、<<等运算符-Polynomial addition and multiplication of elements in the design and implementation of relationship, select the storage representation, the use of single-member list
-
-
0下载:
运算符重载>=,<=,==运算符的重新载入,实用类和友元函数-Operator Overloading > =,< =,== reload operator, practical classes and friend functions
-
-
0下载:
重载加运算符,将一复数与一个double数相加,结果存放在double型的变量中-Overloading the addition operator, will be a complex number with a double and the result is stored in a variable of type double
-
-
0下载:
对二维数组进行运算符+、—的重载,一个使用成员函数,另一个使用友元函数-Add and Subtraction between Two dimensional arrays,using Operator overloading.
-
-
0下载:
函数符号的重载,可以用来定义各种运算符的重载!-Overloaded function symbols can be used to define a variety of operator overloading!
-
-
0下载:
多项式的运算 运算符的重载 加减乘除 类 堆栈 输入系数和次数-Polynomials Math operator overloading
-
-
0下载:
矩阵相加、相减、作乘法运算。使用运算符重载方法进行调用。-Matrix addition, subtraction, multiplication made. Use operator overloading method call.
-
-
0下载:
快速排序算法,C++操作重载例子
在VS2005上面直接编译通过-Quick sort algorithm, C++ operator overloading example
-
-
0下载:
2D、3D、4D向量类,包含操作符重载
-2D, 3D, 4D vector class includes operator overloading,class CVector2,class CVector3,class CVector4
-
-
0下载:
用c++实现分数类的设计,包括算术运算,运算符重载等知识点-Fractional class using c++ design, including arithmetic, operator overloading and other knowledge
-
-
0下载:
数据结构实验:实现分数的+,-,*,/,=,<,>,==等运算符重载,2.实现分数的输入:按照分别输入分子和分母的方式输入;3.实现分数的化简,至少用两种方法实现(辗转相除法);比较两种分数化简方法的效率,实现分数的输出,格式:5/31; 6/5;100/300;要求输出的分数是简分数-Experimental data structure: achieve scores+,-,*, /, =, < ,> , ==, such as operator overloading,
-
-
0下载:
vc++中运算符重载函数++运算符重载函数的实现;-c++ operator overloading function++ operator overloading function to achieve
-
-
0下载:
一、实验名称:Complex类的运算符重载
二、实验目的:这个实验题目的主要目的是让同学们掌握c++运算符重载的用法
三、实验内容:
编写一个Complex类,需要完成的运算符重载有:
(1) + :重载+,用来完成两个复数的加法;
(2) -:重载-,用来完成两个复数的减法;
(3) *:重载*,用来完成两个复数的乘法;
(4) <<:重载<<,用来输出一个复数,输出的格式为(a + b * i),其中a为实部,b为虚部。-First, th
-