文章目录 论文基本信息摘要1.引言2.相关工作3.PROPOSED SCHEME4.实验和讨论5.总结补充 论文基本信息
《ICRA: An Intelligent Clustering Routing Approach for UAV Ad Hoc Networks》 《ICRA:无人机自组织网络的智能聚类路由方法》
Published in: IEEE Transactions on Inte…
Go语言反射reflect
一、引入
先看官方Doc中Rob Pike给出的关于反射的定义:
Reflection in computing is the ability of a program to examine its own structure, particularly through types; it’s a form of metaprogramming. It’s also a great source of …
1.基本数据类型
char ch A;
char s[] "hello";2.const定义常量
const int N 1e5 9;//const定义常量,后续不可被修改
int a[N];3.万能头文件 C11等可用
#include<bits/stdc.h>
using namespace std;4.typedef
typedef long long kk;
kk a[20…