摘要: Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.If the last word ... 阅读全文
posted @ 2015-08-07 16:50 尾巴草 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 题意:给定若干组数据,再给若干命令,模拟队列进出过程。要求,若进队列时,已有该组数据的其他数据,则放在该组最后进队列元素后面。思路:这题主要解决入队问题,如果只用一个队列表示team queue模拟的话,则在入队时会花费很多时间。因此用多个team个队列来表示team queue,再用一个队列来保存... 阅读全文
posted @ 2015-08-07 15:58 尾巴草 阅读(689) 评论(0) 推荐(0) 编辑