- Calculator - Class in myUtil
-
- Calculator() - Constructor for class myUtil.Calculator
-
- capacity() - Method in class myUtil.AQueue
-
- capacity() - Method in class myUtil.LQueue
-
- capacity() - Method in interface myUtil.Queue
-
- Card - Class in poker
-
- Card(char, int) - Constructor for class poker.Card
-
Set suit and kind of the card
- choose(int, String) - Static method in class myUtil.Recursion
-
- choose(int, MySet<Object>) - Static method in class myUtil.Recursion
-
- Circle - Class in shapes
-
- Circle() - Constructor for class shapes.Circle
-
Construct a Circle object using the default size for its radius.
- Circle(double) - Constructor for class shapes.Circle
-
Construct a Circle object using the argument for the radius.
- Circle(Circle) - Constructor for class shapes.Circle
-
This is the copy constructor.
- clone() - Method in class myUtil.MyArrayList
-
This is the clone method
- clone() - Method in class myUtil.MySLinkedList
-
- code - Variable in class myUtil.HuffmanTree.HCode
-
- compareTo(BigInt) - Method in class myBigInteger.AdditionOnlyInt
-
Override the default compareTo method
- compareTo(BigInt) - Method in class myBigInteger.SignedAddSubInt
-
Override the default compareTo method
- compareTo(XCard) - Method in class poker.XCard
-
Compare suites first, C,D,H,S; then kind 1,2, ....,13
- compareTo(ThreeD) - Method in class shapes.Cylinder
-
Using getVolume to determine the comparison result as follows:
-1 if (this.getVolume() < a.getVolume());
0 if (this.getVolume() = a.getVolume());
1 if (this.getVolume() > a.getVolume());
- compareTo(ThreeD) - Method in class shapes.RectanglePrism
-
Using getVolume to determine the comparison result as follows:
-1 if (this.getVolume() < a.getVolume());
0 if (this.getVolume() = a.getVolume());
1 if (this.getVolume() > a.getVolume());
- contains(Set<T>) - Method in interface myUtil.Set
-
Subset.
- Cylinder - Class in shapes
-
- Cylinder() - Constructor for class shapes.Cylinder
-
Construct a Cylinder object using the default value for
radius and depth.
- Cylinder(double, double) - Constructor for class shapes.Cylinder
-
Construct a Cylinder object using the arguments.
- Cylinder(Cylinder) - Constructor for class shapes.Cylinder
-
This is the copy constructor.