12504 - Updating a Dictionary

本文详细阐述了如何对比两个字典的差异,包括新增、删除和修改的键值对。

In this problem, a dictionary is collectionof key-value pairs, where keys are lower-case letters, and values arenon-negative integers. Given an old dictionary and a new dictionary, find outwhat were changed.

Each dictionary is formatting as follows:

{key:value,key:value,...,key:value}

Each key is a string of lower-case letters,and each value is a non-negative integer without leading zeros or prefix `+'.(i.e. -4, 03 and +77 are illegal). Each key will appear at most once, but keyscan appear in any order.

Input 

The first line contains the number of testcases T ( T1000). Each test casecontains two lines. The first line contains the old dictionary, and the secondline contains the new dictionary. Each line will contain at most 100 charactersand will not contain any whitespace characters. Both dictionaries could beempty.


WARNING: there are no restrictions on the lengths of each key and value inthe dictionary. That means keys could be really long and values could be reallylarge.

Output 

For each test case, print the changes,formatted as follows:

  • First, if there are any new keys, print `+' and then the new keys in increasing order (lexicographically), separated by commas.
  • Second, if there are any removed keys, print `-' and then the removed keys in increasing order (lexicographically), separated by commas.
  • Last, if there are any keys with changed value, print `*' and then these keys in increasing order (lexicographically), separated by commas.

If the two dictionaries are identical,print `No changes' (without quotes) instead.

Print a blank line after each test case.

SampleInput 

3

{a:3,b:4,c:10,f:6}

{a:3,c:5,d:10,ee:4}

{x:1,xyz:123456789123456789123456789}

{xyz:123456789123456789123456789,x:1}

{first:1,second:2,third:3}

{third:3,second:2}

SampleOutput 

+d,ee

-b,f

*c

 

No changes

 

-first

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值