Enter an English sentence to flip the order of words in the sentence. The character sequence in the word remains unchanged.

Source: Internet
Author: User

Question: enter an English sentence to flip the order of words in the sentence, but the order of Characters in the word remains unchanged. Words in a sentence are separated by space characters. For simplicity, punctuation marks are processed like normal letters. For example, if "I am a student." Is input, "student. A am I" is output ".

The solution is to first flip the entire sentence and then flip each word.

The Code is as follows:

# Include <iostream> using namespace STD; void myreverse (char *, char *); char * senreverse (char *); int main () {char Sen [] = "hello, I am a student! "; Char * result = senreverse (SEN); cout <result <Endl; return 0;} void myreverse (char * Start, char * End) {char temp; while (start <End) {temp = * start; * Start = * end; * end = temp; Start ++; end -- ;}} char * senreverse (char * Sen) {char * Start = Sen, * end = Sen + strlen (SEN)-1; myreverse (START, end); // first reverse the entire sentence
/* This annotation is another implementation, but it seems complicated to use int LOC; // record the length of each word for (START = Sen, end = start; (* End )! = '\ 0'; Start + = LOC) {loc = 0; while (* End )! = ''& (* End )! = '\ 0') {end ++, Loc ++;} end --; myreverse (START, end); End ++ = 2; loc ++ ;} */end = start; while (* start! = '\ 0') {If (* end = ''| * end =' \ 0') {myreverse (START, -- end ); if (* end = '\ 0') break; end + = 2; Start = end;} else ++ end;} return Sen ;}
Large-Scale Price Reduction
  • 59% Max. and 23% Avg.
  • Price Reduction for Core Products
  • Price Reduction in Multiple Regions
undefined. /
Connect with us on Discord
  • Secure, anonymous group chat without disturbance
  • Stay updated on campaigns, new products, and more
  • Support for all your questions
undefined. /
Free Tier
  • Start free from ECS to Big Data
  • Get Started in 3 Simple Steps
  • Try ECS t5 1C1G
undefined. /

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.