2012年11月11日

POJ2259-Team Queue

摘要: 以前在uva上做过这个题,一模一样的,但是这次还是弄了个RE,而且这次的错误与上次完全不同;以前的错误是逻辑错误,这次的而代码错误,只是少个else。用了一晚上的时间,用神一样的测试数据终于揪出了这个错误。错误见代码《测试数据见UVA540.#include #include #include #include using namespace std; struct node { int data; node *next; }; struct zu { int count; node *tail, *head; }; int cla[1000050]; ... 阅读全文
posted @ 2012-11-11 21:14 Primo... 阅读(171) 评论(0) 推荐(0)