Microsoft interview questions

Source: Internet
Author: User
Tags strtok

Reading a file requires printing words that meet certain conditions.

The condition is that the first two characters must be given two letters, such as he. If the words in the file start with "he", print them out.

This is a simple implementation.

# Include <iostream>
# Include <fstream>

Using namespace STD;
Char SEPs [] = ",/t/"/n .? ";
Char * token;

Int main ()
{
Ifstream ifs ("test.txt ");
If (IFS = NULL)
{
Cerr <"the file was not opened." <Endl;
Exit (1 );
}
String STR;
String SRC;

While (Getline (IFS, STR ))
{
SRC + = STR;
}
Cout <SRC <Endl;
Int Si = SRC. Size ();
Char * pstr = new char [Si + 1];
Strcpy (pstr, SRC. c_str ());

Cout <Endl;

Cout <"Haha. The result is the below words." <Endl;

Token = strtok (pstr, SEPs );
While (Token! = NULL)
{
/* While there are tokens in "string "*/
STR = token;
If (Str. substr (0, 2) = "he ")
{
Cout <STR <Endl;
}
/* Get next token :*/
Token = strtok (null, SEPs );
}
Cout <Endl;
Delete [] pstr;
System ("pause ");
Return 0;
}





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.