ZOJ 1004 Anagrams by Stack 分析与解答

问题:

How can anagrams result from sequences of stack operations? There are two sequences of stack operators which can convert TROT to TORT:

[
i i i i o o o o
i o i i o o i o
]

whereistands for Push andostands for Pop. Your program should, given pairs of words produce sequences of stack operations which convert the first word to the second.

Input

The input will consist of several lines of input. The first line of each pair of input lines is to be considered as a source word (which does not include the end-of-line character). The second line (again, not including the end-of-line character) of each pair is a target word. The end of input is marked by end of file.

Output

For each input pair, your program should produce a sorted list of valid sequences ofiandowhich produce the target word from the source word. Each list should be delimited by

[
]

and the sequences should be printed in "dictionary order". Within each sequence, eachiandois followed by a single space and each sequence is terminated by a new line.

Process

A stack is a data storage and retrieval structure permitting two operations:

Push - to insert an item and
Pop - to retrieve the most recently pushed item

We will use the symboli(in) for push ando(out) for pop operations for an initially empty stack of characters. Given an input word, some sequences of push and pop operations are valid in that every character of the word is both pushed and popped, and furthermore, no attempt is ever made to pop the empty stack. For example, if the word FOO is input, then the sequence:

i i o i o ois valid, but
i i ois not (it's too short), neither is
i i o o o i(there's an illegal pop of an empty stack)

Valid sequences yield rearrangements of the letters in an input word. For example, the input word FOO and the sequencei i o i o oproduce the anagram OOF. So also would the sequencei i i o o o. You are to write a program to input pairs of words and output all the valid sequences ofiandowhich will produce the second member of each pair from the first.

Sample Input
madam
adamm
bahama
bahama
long
short
eric
rice

Sample Output

[
i i i i o o o i o o 
i i i i o o o o i o 
i i o i o i o i o o 
i i o i o i o o i o 
]
[
i o i i i o o i i o o o 
i o i i i o o o i o i o 
i o i o i o i i i o o o 
i o i o i o i o i o i o 
]
[
]
[
i i o i o i o o 
]

说明:

通过栈的进栈、出栈操作描述由第一个源字符串转换到目的字符串。i表示进栈,o表示出栈。输出所有的可能,并且结果按字典顺序排列。anagram意为回文构词法。若源字符串无法转换为目的字符串,则不显示结果。

比如:madam转换为adamm:

m进栈,a进栈,d进栈,a进栈,a出栈,d出栈,a出栈,m进栈,m出栈,m出栈。即显示结果为:i i i i o o o i o o

这只是一种情况,要求显示出所有的情况。结果由一对"["、“]”包住。

分析:

通过递归调用过程anagram解决问题。

函数anagram的接口为:

void anagram(char *p_st, int top, char *p_res, int num, int si, int ti);

p_st指向当前的栈,top指向当前入栈位置,即栈顶元素为p_st[top-1]。p_res指向存储结果的字符串,num为下一个结果的位置。si为当前源字符串的搜索位置,ti为当前目的字符串的搜索位置。

源字符串source和目的字符串target为全局变量。

本过程一开始要对栈和结果字符串进行复制,否则无法得到多个结果且会产生混乱。

流程图为:

优先进栈,写入“i”,并递归调用,之后返回后再看是否原栈顶元素是否与当前目的字符串搜索位置匹配,再在合适地方写入“o”,然后递归调用。每一次过程调用先考虑“i”的情况再考虑“o”的情况保证了输出结果按字典排序输出。

基本上此过程有3个主要过程,检验是否产生结果,进栈并处理,出栈并处理。

在Ubuntu下没有找到一个好用的画图工具,于是使用了一个在线绘制流程图的app:Gliffy(http://www.gliffy.com/)。非常不错!

代码(gcc)

#include<stdio.h> #include<stdlib.h> #define MAX_LEN 30 char source[MAX_LEN], target[MAX_LEN]; void anagram(char *p_st, int top, char *p_res, int num, int si, int ti) { char stack[MAX_LEN], res[2 * MAX_LEN]; int i; if(p_st != NULL)//复制栈 { for(i = 0; i < top; i++) stack[i] = p_st[i]; stack[i] = '/0'; } if(p_res != NULL)//复制结果字符串 { for(i = 0; i < num; i++) res[i] = p_res[i]; res[i] = '/0'; } if(source[si] == '/0')//源字符串搜索完 { if(target[ti] == '/0')//目的字符串搜索完 { if(top != 0)//此时栈中还有内容,说明有问题。但我觉得这种状况不可能发生 return; printf("%s/n",res); return; } else if(top == 0)//目标字符串未搜索完,栈已空,说明目的字符串比源字符串长,返回上一层 return; } else{ if(target[ti] == '/0' )//说明源字符串比目的字符串长 return; stack[top] = source[si]; res[num] = 'i'; res[num + 1] = ' '; anagram(stack, top + 1, res, num + 2, si + 1, ti);//递归调用 } if(stack[top - 1] == target[ti])//若调用开始时栈顶元素与当前目的字符串搜索位置匹配 { res[num] = 'o'; res[num + 1] = ' '; anagram(stack, top - 1, res, num + 2, si, ti + 1); //递归调用 } } int main(void) { while(scanf("%s",source) != EOF)//注意I/O格式 { scanf("%s",target); printf("[/n"); anagram(NULL,0,NULL,0,0,0); printf("]/n"); } return 0; }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值