摘要: ``` #ifndef LINKLIST_H_INCLUDED #define LINKLIST_H_INCLUDED #include "ds.h" #ifndef ElemType #define ElemType int #define ELEMTYPE_TAG #endif typedef struct LNode { ElemType data; struct ... 阅读全文
posted @ 2017-09-22 22:33 松源兄 阅读(143) 评论(0) 推荐(0) 编辑
摘要: class Point{ private double x; private double y; public double getDis(Point point){ return Math.sqrt(Math.sqrt((point.x this.x) (point.x this.x)+(poin 阅读全文
posted @ 2017-09-22 22:06 松源兄 阅读(191) 评论(0) 推荐(0) 编辑