ZOJ 151 Word Reversal [스 택 + 문자 스 트림 + 문자 스 트림]
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;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Rails Turbolinks를 페이지 단위로 비활성화하는 방법원래 Turobolinks란? Turbolinks는 링크를 생성하는 요소인 a 요소의 클릭을 후크로 하고, 이동한 페이지를 Ajax에서 가져옵니다. 그 후, 취득 페이지의 데이터가 천이 전의 페이지와 동일한 것이 있...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.