有一个字符串:a="190.0.1 190.0.2 190.0.1"现在我要对其去重,去重可以用uniq,可是前提是先要排序,以下是实现:a=`echo $a | awk '{for (i=1; i<NF; i++) print $i}' | sout |uniq`echo $a190.0.1 19...
分类:
编程语言 时间:
2015-03-05 18:53:45
阅读次数:
210
There are lots of number games for children. These games are pretty easy to play but not so easy to make. We will discuss about an interesting game he...
分类:
编程语言 时间:
2015-02-27 20:09:36
阅读次数:
176
描述参考整数排序方法,设计一种为字符串排序的算法,将字符串从小到大输出输入第一行为测试数据组数t, 后面跟着t组数据。每组数据第一行是n,表示这组数据有n行字符串,接下来是要排序的n行字符串。每行字符串的字符个数不会大于200, n 2 #include 3 void sort(char arr.....
分类:
编程语言 时间:
2015-02-19 21:50:58
阅读次数:
198
uva 10602 Editor Nottoobad
Company Macrohard has released it’s new version of editor Nottoobad, which can understand a few voice commands. Unfortunately, there are only two voice commands that ...
分类:
编程语言 时间:
2015-02-14 17:32:51
阅读次数:
276
import re re_digits = re.compile(r'(\d+)') def embedded_numbers(s): pieces = re_digits.split(s) # 切成数字与非数字 pieces[1::2] = map(int, pieces[1::2]) # 将.....
分类:
编程语言 时间:
2015-02-03 10:49:28
阅读次数:
376
输入一个字符串,去掉重复出现的字符,并把剩余的字符串排序输出。
#include
#include
using namespace std;
int main(int argc, char *argv[])
{
string s;
while(cin>>s)
{
for(int i=0;i<s.size();++i)
for(i...
分类:
编程语言 时间:
2015-01-06 00:51:40
阅读次数:
232
输入一个字符串,去掉重复出现的字符,并把剩余的字符串排序输出。
#include
#include
using namespace std;
void sort(string s)
{
char tmp[100];
int len=s.size();
int count=0,i,j;
for (i=0;i<len;i++)
{
for (j=i+1;j<l...
分类:
编程语言 时间:
2015-01-05 09:33:58
阅读次数:
203
Ananagrams
Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld
& %llu
Submit Status
Description
Ananagrams
Most crossword puzzle fans are used to...
分类:
编程语言 时间:
2015-01-03 17:27:43
阅读次数:
231
题目1066:字符串排序
时间限制:1 秒
内存限制:32 兆
特殊判题:否
提交:4919
解决:1983
题目描述:
输入一个长度不超过20的字符串,对所输入的字符串,按照ASCII码的大小从小到大进行排序,请输出排序后的结果
输入:
一个字符串,其长度n
输出:
输入样例可能有多组,对于每组测试样...
分类:
编程语言 时间:
2014-12-30 00:30:43
阅读次数:
178