如题 我有以下两行代码
struct point{int id,dis;}; std::queue<point>q;
怎么样优美的压到同一行(不要跟我说直接暴力压成下面那样)
struct point{int id,dis;};std::queue<point>q;