#include<iostream>using namespace std; void swap(int array[], int index1, int index2){ int t = array[index1]; array[index1] = array[index2]; array[ind Read More
I started to learn how to program in 2004, but now I feel ashamed that I just do not know much about algorithm. Although being work as a computer prog Read More
#include <iostream>using namespace std; void swap(int array[], int beginPos, int endPos){ int t = array[beginPos]; array[beginPos] = array[endPos]; ar Read More
I have decided to study algorithms , and I decided to write it out with C/C++ , JAVA and Python.First of all, I will write them in C/C++. I will do my Read More
1 expressions and control flow2 a way of abstraction: variable, function3 a way of combination:function, object,dataIn object-oriented language, we us... Read More