ZOJ 151 Word Reversal [스 택 + 문자 스 트림 + 문자 스 트림]

Word Reversal Time Limit: 2 Seconds Memory Limit: 65536 KB For each list of words, output a line with each word reversed without changing the order of the words.
This problem contains multiple test cases!
The first line of a multiple input is an integer N, then a blank line followed by N input blocks. Each input block is in the format indicated in the problem description. There is a blank line between input blocks.
The output format consists of N output blocks. There is a blank line between output blocks.
Input
You will be given a number of test cases. The first line contains a positive integer indicating the number of cases to follow. Each case is given on a line containing a list of words separated by one space, and each word contains only uppercase and lowercase letters.
Output
For each test case, print the output on one line.
Sample Input
1
3 I am happy today To be or not to be I want to win the practice contest
Sample Output
I ma yppah yadot oT eb ro ton ot eb I tnaw ot niw eht ecitcarp tsetnoc
Source: East Central North America 1999, Practice
문제 링크: ZOJ 151 Word Reversal 문제 약술: (약) 문제 분석:    이것 은 간단 한 텍스트 처리 문제 다.C + + 로 구현 하면 문자열 을 남 겨 서 처리 할 수 있 습 니 다.정 도 는 문자 흐름 과 스 택 으로 해결 합 니 다.프로그램 설명: (약) 참조 링크: (약) 제목: (약)
AC 의 C 언어 프로그램 은 다음 과 같 습 니 다.
/* ZOJ1151 Word Reversal */

#include 

#define MAXSTACK 1024

char stack[MAXSTACK];
int pstack;

void push(char c)
{
    stack[pstack++] = c;
}

char pop()
{
    return stack[--pstack];
}

int main(void)
{
    int t, line, i;
    char c;

    scanf("%d", &t);
    while(t--) {
        scanf("%d", &line);
        getchar();

        pstack = 0;

        for(i=1; i<=line; i++) {
            c = getchar();
            while(c != '
'
) { if(c == ' ') { while(pstack) putchar(pop()); putchar(c); } else push(c); c = getchar(); } while(pstack) putchar(pop()); putchar('
'
); } if(t) putchar('
'
); } return 0; }

AC 의 C + + 언어 프로그램 은 다음 과 같 습 니 다.
/* ZOJ1151 Word Reversal */

#include 
#include 
#include 

using namespace std;

void reverse(string& s)
{
    string t;
    stringstream ss(s);
    bool flag = false;
    while(ss >> t) {
        if(flag) cout << ' ';
        flag = true;
        for(int i = (int)t.size() - 1; i >= 0; i--)
            cout << t[i];
    }
    cout << endl;
}

int main()
{
    int t, n;
    cin >> t;
    while(t--) {
        cin >> n;
        cin.get();
        string s;
        for(int i = 1; i <= n; i++) {
            getline(cin, s);
            reverse(s);
        }
        if(t) cout << endl;
    }

    return 0;
}

좋은 웹페이지 즐겨찾기