Tomorrow is written by today Read More
posted @ 2016-03-19 12:35 zhaodonglin Views(73) Comments(0) Diggs(0)
#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
posted @ 2016-03-17 20:10 zhaodonglin Views(134) Comments(0) Diggs(0)
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
posted @ 2016-03-16 18:57 zhaodonglin Views(101) Comments(0) Diggs(0)
#include <iostream>using namespace std; void swap(int array[], int beginPos, int endPos){ int t = array[beginPos]; array[beginPos] = array[endPos]; ar Read More
posted @ 2016-03-16 08:37 zhaodonglin Views(177) Comments(0) Diggs(0)
#include<iostream>using namespace std;#define matrixes_number (4)int matrixes_rows_number_array[matrixes_number + 1] = {2,3,10,4,5};int matrixes_multi Read More
posted @ 2016-03-15 08:26 zhaodonglin Views(121) Comments(0) Diggs(0)
posted @ 2016-03-12 16:53 zhaodonglin Views(100) Comments(0) Diggs(0)
posted @ 2016-03-12 16:32 zhaodonglin Views(85) Comments(0) Diggs(0)
posted @ 2016-03-12 15:40 zhaodonglin Views(89) Comments(0) Diggs(0)
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
posted @ 2016-03-11 14:44 zhaodonglin Views(104) Comments(0) Diggs(0)
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
posted @ 2016-01-26 11:03 zhaodonglin Views(175) Comments(0) Diggs(0)