摘要: #include #include typedef struct node { int id; int pri; struct node *left; struct node *right; struct node *parent; }heapDataType; typedef struct { bool s[20]; int t... 阅读全文
posted @ 2017-09-16 14:07 Pumpkin0227 阅读(164) 评论(0) 推荐(0)