摘要: People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6-digit number, wher 阅读全文
posted @ 2021-01-27 23:37 XA科研 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 第一种,先处理源点的邻接结点,再循环处理其他结点(同陈越姥姥慕课代码) int findMin(){//查找为收录结点中dist最小的点 int mind=inf; int minv=-1; for(int i=1;i<=N;i++){ if(collected[i]==false&&dist[i] 阅读全文
posted @ 2021-01-27 23:07 XA科研 阅读(108) 评论(0) 推荐(0) 编辑
摘要: map为映射,可以将任何基本类型(包括STL容器)映射到任何基本类型(包括STL容器) 一、map定义: map<typename1,typename2> mp; 二、访问: map中的键是唯一的 通过下标访问: 例如:mp['c']=20 迭代器访问: map<typename1,typename 阅读全文
posted @ 2021-01-27 14:31 XA科研 阅读(156) 评论(0) 推荐(0) 编辑
摘要: int型变量的取值范围:[-2^31, 2^31 - 1] -> [-2147483648, 2147483647] 0x7fffffff = 2147483647 = (2^31 - 1) = (1 << 31) - 1 0x3fffffff = 1073741823 = (2^30 - 1) = 阅读全文
posted @ 2021-01-27 14:21 XA科研 阅读(10521) 评论(0) 推荐(0) 编辑
摘要: set为集合,是一个内部自动有序且不含重复元素的容器 一、set的定义 set<typename> name; 二、元素访问 set只能通过迭代器(iterator)进行访问 set<typename> ::iterator it; 三、常用函数 (1)insert() insert(x)将x插入s 阅读全文
posted @ 2021-01-27 14:07 XA科研 阅读(137) 评论(0) 推荐(0) 编辑
摘要: There is a public bike service in Hangzhou City which provides great convenience to the tourists from all over the world. One may rent a bike at any s 阅读全文
posted @ 2021-01-26 23:49 XA科研 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 程序在CPU中执行,CPU中有程序计数器,寄存器,控制器等 代码都在磁盘上,读取时被拿到内存中(转化成机器指令),并被程序计数器来技术和标记 无并发时:CPU中执行,需要排队,一行一行执行 有并发时:利用进程,来回切换--(将部分进程拿出)-->线程(只管理小块资源)(做CPU切换)->时间片 一个 阅读全文
posted @ 2021-01-26 22:08 XA科研 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Java连接数据库须知: 数据库的基本信息: 1、数据库服务器在哪儿?ip或者域名,202.196.38.84,localhost,127.0.0.1,用户名和密码 * 2、数据存放的数据库资源名叫什么?studnetmanage 3、数据库存放到数据库中的哪个数据表?student * */ /* 阅读全文
posted @ 2021-01-26 21:51 XA科研 阅读(118) 评论(0) 推荐(0) 编辑
摘要: SQL基础知识: Char :定长子符型 Varchar :变长字符型 创建数据库:create databalse 数据库名(); 选择数据库: use 数据库名; 创建表: Eg:CREATE TABLE Students(sno CHAR(9) NOT NULL PRIMARY KEY,sNa 阅读全文
posted @ 2021-01-26 21:48 XA科研 阅读(88) 评论(0) 推荐(0) 编辑
摘要: dfs:搜索全部解,棋盘问题,八皇后问题 bfs:用来搜索无权最短路径,最少步数,最少交换次数,因为bfs搜索过程中遇到的解一定是离根最近的,所以遇到第一个解,一定是最优解。 总结:无权图最短路径用广搜,全部解用深搜 阅读全文
posted @ 2021-01-26 17:14 XA科研 阅读(107) 评论(0) 推荐(0) 编辑