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 395199
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T16:25:49+00:00 2026-05-12T16:25:49+00:00

Just wonder, for a matrix stored in a file as what it is, i.e.

  • 0

Just wonder, for a matrix stored in a file as what it is, i.e. each line in the file being a row of the matrix where elements are separated by space(s), how can I predetermine the size of the matrix, then create an array of the same size and read it into the array in C and C++? If you have some code example, that would be appreciated!

Thanks and regards!

  • 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-12T16:25:49+00:00Added an answer on May 12, 2026 at 4:25 pm

    Something like this. You need to include vector, sstream and string.

    There is no need to find out the size of the vector in advance.

    std::vector<int> readRow(std::string row) {
      std::vector<int> retval;
      std::istringstream is(row);
      int num;
      while (is >> num) retval.push_back(num);
      return retval;
    }
    
    std::vector<std::vector<int> > readVector(std::istream &is) {
      std::string line;
      std::vector<std::vector<int> > retval;
      while (std::getline(is, line))
        retval.push_back(readRow(line));
      return retval;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just wonder where is this space between the end of the image and
I just wonder which UI element is being used for such username/password field just
I just wonder if that is possible. I know simple types can be read
Just wonder how to modify the values of multiple elements of an array under
Membase seems pretty promising. Just wonder if Play! can work with Membase. Can anyone
Just wonder what is behind the scene. Actually it seems that we can set
I just wonder how can I get rid of the java jre dependency and
I just wonder how Lucene can make it,and from the source code I know
I just wonder if this line of code is safe to use to avoid
I just wonder how can I achieve the gesture of tapping the lower right

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.