
回顾知识点
发烧的小龙虾
BUAAer
展开
-
复习深搜广搜
熟练一遍/*2018.7.10*/ /*练习DFS和BFS,无STL,加油!*/ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <iostream> #include <algorithm> usin...原创 2018-07-10 19:44:21 · 208 阅读 · 0 评论 -
复习单源最短路径
/*2018.7.10*/ / *练习迪杰斯特拉,无STL,加油!* / #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <iostream> #include <algorithm> 使用命名空间st...原创 2018-07-10 20:12:18 · 178 阅读 · 0 评论 -
复习二叉树层次遍历和求树的宽度
的#include <stdio.h>中 的#include <iostream的> 的#include <stdlib.h>中 使用命名空间std; #define MAXSIZE 100 typedef struct bnode { char数据; struct bnode * lchild,* rchild; } B节点,* bitree...原创 2018-07-10 21:33:17 · 2080 阅读 · 0 评论 -
强类型语言、弱类型语言、静态语言、动态语言
两句话 1. 不允许隐式类型转换的是强类型语言(Java)(C、C++是弱类型,因为他允许隐式类型转换,如int转double) 2. 编译时就知道类型的就是静态语言(C、C++、Java)(OC、Python是动态语言) ...原创 2018-12-11 17:24:11 · 466 阅读 · 0 评论