Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6809323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:04:21+00:00 2026-05-26T20:04:21+00:00

Which one is faster? Fragment A or Fragment B? Or would they be more

  • 0

Which one is faster? Fragment A or Fragment B? Or would they be more or less the same?

I know they are impractical programs; this is only for learning purposes.

list<string> A(1000);
//assign random string values to each entry in A (code not shown). 
//At least one of the strings is "test"
list<string>::iterator it;

//BEGINNING OF FRAGMENT A:
for(it=A.begin(); it!=A.end(); it++){
    if((*it)=="test"){
        cout << "found";
        break;
    }
}
//END OF FRAGMENT A

.

map<string,bool> B(1000);
//assign random string values to each entry in B (code not shown). 
//At least one of the strings is "test".
//B[any string]=1 (code not shown)
//
//BEGINNING OF FRAGMENT B:
if(B["test"]) cout << "found";
////END OF FRAGMENT B
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T20:04:21+00:00Added an answer on May 26, 2026 at 8:04 pm

    First of all you should profile.

    Second;
    they’re not equal as B["test"] will insert an element if it isnt in the container.
    if(B.count("test") != 0) is the correct way to do it.

    Third; B is faster, and will gain the larger the container is as it will perform a binary search in a sorted container; O(log(N)) instead of O(N).

    Forth; std::hash_set or hash_map is probably what youre looking for as it is even more fast then std::map

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to real-hand experienced answer on this. Which one is faster? Writing
Which one is faster? Which one uses less memory? Console.WriteLine(string1) Console.WriteLine(string2) Console.WriteLine(string3) Console.WriteLine(stringNth) or
Which one of these would be more suitable for RLE on bytes? I need
Given the following two queries, which one would be faster (in theory) if there
I know we can do correlated subqueries and join. But which one is faster?
Which one is faster in Java and why? Math.max(a,b) (a>b)?a:b (This was asked in
which one is more memory efficient? which one works faster with 1000000 items? is
string.IsNullOrEmpty(myString.Trim()) vs string.IsNullOrWhiteSpace(myString) Which one is faster or more reliable and why is that?
Which one is faster: Either this try { n.foo(); } catch(NullPointerException ex) { }
which one is faster select * from parents p inner join children c on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.