TIME 07:01 A Generic bubble sort A Generic bubble sort #include <iostream> using namespace std; template <class X> void bubble(X *data, int size) { register int a, b; X t; ...
TIME 06:20 Table cells that span more than one row/column Table cells that span more than one row/column Cell that spans two columns: Name Telephone Bill Gates 555 77 854 555 77 855 Cell that spans two rows: First Name: Bill Gates Telephone: 555 77 854 555 77 855 ...
TIME 05:59 Recursive Binary Search Recursive Binary Search public class BinarySearchRecursive { public static final int NOT_FOUND = -1; /** * Performs the standard binary search ...
TIME 05:53 Tower Of Hanoi Alogithm Using Recursion. Tower Of Hanoi Alogithm Using Recursion. #include<iostream.h> #include<stdio.h> #include<conio.h> class tower { int *t1,*t2,*t3; int x,y,z; ...
TIME 05:48 Use Of Pointers Use Of Pointers #include <iostream> using namespace std; int main() { // declare an integer and a float variable int IntNum; float FloatNum; ...
TIME 05:45 Virtual Function Virtual Function #include <iostream> using namespace std; class BaseClass { public: int i; BaseClass(int x) ...
TIME 05:44 Word Frequency Word Frequency #include <stdio.h> #define SIZE 80 #define LEN 80 int strword(char[],char[][]); int strword_p(char*,char**); void main() { char*...