码迷,mamicode.com
首页 >  
搜索关键字:chapter    ( 1815个结果
Introductory: Seeing through Statistics - Part 1
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
Thing in java 第四章,控制执行流程,练习题答案
/** * 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
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
Chapter 8(查找)
1.二分查找和插值查找//************************Search.h*********************************** #ifndef SEARCH_H #define SEARCH_H #include #include int BiSearch(int ... ...
分类:其他好文   时间:2018-07-17 23:31:25    阅读次数:217
Chapter 9 (排序)
1.排序算法://****************************Sort.h******************************************** #ifndef SORT_H #define SORT_H #include #include #include //冒泡排... ...
分类:编程语言   时间:2018-07-17 23:30:31    阅读次数:226
Chapter 5(串)
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
Chapter 7(图)
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
Chapter 6(树)
1.树的储存方式//****************双亲表示法************************ #define Max_TREE_SIZE 100 typedef int TElemType; typedef struct PTNode //结点结构 { TElemType data... ...
分类:其他好文   时间:2018-07-17 23:22:15    阅读次数:195
Chapter 2(算法)
附件列表算法.jpg ...
分类:编程语言   时间:2018-07-17 23:18:59    阅读次数:186
1815条   上一页 1 ... 36 37 38 39 40 ... 182 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!