摘要: For any 4-digit integer except the ones with all the digits being the same, if we sort the digits in non-increasing order first, and then in non-decre... 阅读全文
posted @ 2014-03-08 13:32 bingtel 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1. 插入:/*h->elements[0] is sentinel*//*最小堆*/void insert(ElementType X, Queue h){ if(isFull(h)){ Error("Queue is full"); return; } ... 阅读全文
posted @ 2014-03-08 09:43 bingtel 阅读(222) 评论(0) 推荐(0) 编辑