摘要: 下面来进行这段代码的分析: struct node { //定义一个结构体node(节点) int x; int y; int len; //node中有3个成员变量x,y,len bool operator <(const node &a)const {//重载<操作符。可以对两个node使用<操 阅读全文
posted @ 2017-04-26 21:52 Angel_Kitty 阅读(35980) 评论(12) 推荐(37) 编辑