摘要: #include <iostream> #include <stdio.h> using namespace std; class Person{ friend ostream& operator<<(ostream &cout, Person &p); public: Person(int a, 阅读全文
posted @ 2021-02-03 11:14 WallEve 阅读(118) 评论(0) 推荐(0)
摘要: title: 社交网络模型及属性介绍 categories: [理论] tags: [学习小结] 社交网络的属性介绍: 网络属性 社会解释的例子 局部拓扑 结构对等:如果两个参与者与其他参与者具有相似的连接,则它们是相似或等效的。三合会封闭:演员的两个朋友最终成为朋友。平衡理论:朋友的朋友是朋友,敌 阅读全文
posted @ 2021-02-03 10:48 WallEve 阅读(514) 评论(0) 推荐(0)
摘要: #include <iostream> #include <stdio.h> using namespace std; class MyPrint{ public: // 重载函数调用运算符 void operator()(string test){ cout << test << endl; } 阅读全文
posted @ 2021-02-03 10:30 WallEve 阅读(81) 评论(0) 推荐(0)