Chapter 1. The benefits and risks of using statistics 1. Statistics的定义: Statistics is a collection of procedures and principles for gaining and proces ...
分类:
其他好文 时间:
2018-07-30 11:10:13
阅读次数:
128
/** * Created by Sandy.Liu on 2018/7/19. * Thinking in java, version 4, chapter 4, practice 1 * Write a program to print from 1 to 100 */public class ...
分类:
编程语言 时间:
2018-07-28 21:58:26
阅读次数:
192
/** * Created by Sandy.Liu on 2018/7/10. *//** * Thinking in java version 4, chapter 3, 3.4 * Write a program that calculates velocity using a constan ...
分类:
其他好文 时间:
2018-07-28 21:51:34
阅读次数:
169
Java Multithreading Interview Questions Multithreading and Synchronization is considered as the typical chapter in java programming. In game developme ...
分类:
编程语言 时间:
2018-07-22 14:11:51
阅读次数:
209
1.二分查找和插值查找//************************Search.h*********************************** #ifndef SEARCH_H #define SEARCH_H #include #include int BiSearch(int ... ...
分类:
其他好文 时间:
2018-07-17 23:31:25
阅读次数:
217
1.排序算法://****************************Sort.h******************************************** #ifndef SORT_H #define SORT_H #include #include #include //冒泡排... ...
分类:
编程语言 时间:
2018-07-17 23:30:31
阅读次数:
226
1.kmp#include #include #include #include void get_nextval(char *str,int *nextval) { int i,j; i = 0; j = -1; nextval[0] = -1; int len = strlen(str); wh... ...
分类:
其他好文 时间:
2018-07-17 23:27:08
阅读次数:
226
1.Prim算法生成最小生成树//Prim算法生成最小生成树 void MiniSpanTree_Prim(MGraph G) { int min,i,j,k; int adjvex[MAXVEX]; int lowcost[MAXVEX]; lowcost[0] = 0; adjvex[0] = ... ...
分类:
其他好文 时间:
2018-07-17 23:22:58
阅读次数:
206
1.树的储存方式//****************双亲表示法************************ #define Max_TREE_SIZE 100 typedef int TElemType; typedef struct PTNode //结点结构 { TElemType data... ...
分类:
其他好文 时间:
2018-07-17 23:22:15
阅读次数:
195