09 2020 档案

摘要:①不带头结点的单链表的实现(类模板) 1 #include <iostream> 2 #include <cstdlib> 3 #include <ctime> 4 ///无头结点 5 using namespace std; 6 //typedef int T; 7 8 template <cla 阅读全文
posted @ 2020-09-29 08:42 ananasaa 阅读(156) 评论(0) 推荐(0)
摘要:C++代码实现顺序表 1 #include <iostream> 2 #include <cassert> 3 #include <cstdlib> 4 #include <ctime> 5 using namespace std; 6 typedef int T; 7 const int defa 阅读全文
posted @ 2020-09-26 10:24 ananasaa 阅读(193) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-09-26 10:07 ananasaa 阅读(95) 评论(0) 推荐(0)
摘要:1.随机数 #include<iostream> #include <ctime> //产生time的 #include<cstdlib> //产生俩随机函数的 using namespace std; int main() { const int N = 5; const int M = 24; 阅读全文
posted @ 2020-09-26 09:07 ananasaa 阅读(128) 评论(0) 推荐(0)
摘要:PART 1-时空的基本属性 ## 力学分类 ①运动学:描述物体的运动情况 ②动力学:研究物体运动时,与周围其他物体的相互作用&&产生的影响 阅读全文
posted @ 2020-09-26 08:55 ananasaa 阅读(199) 评论(0) 推荐(0)
摘要:167 阅读全文
posted @ 2020-09-26 08:53 ananasaa 阅读(120) 评论(0) 推荐(0)