摘要: 我们输入一串字符串:aabbcdeffffg 需要输出:abcdefg 可以用set 来实现,具体的set,list,map这些可以上网搜索,我也是新手 上代码String abcString = "aabbcdeffffg"; Set set = new HashSet(... 阅读全文