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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T12:10:43+00:00 2026-06-13T12:10:43+00:00

Possible Duplicate: Why is my program slow when looping over exactly 8192 elements? I

  • 0

Possible Duplicate:
Why is my program slow when looping over exactly 8192 elements?

I have been tinkering around with a program that I’m using to simply sum the elements of a 2d array. A typo led to what seem to me at least, some very strange results.

When dealing with array, matrix[SIZE][SIZE]:

for(int row = 0; row < SIZE; ++row)
    for(int col = 0; col < SIZE; ++col)
        sum1 += matrix[row][col];

Runs very quickly, however is the above line sum1… is modified:

sum2 += matrix[col][row]

As I did once on accident without realizing it, I notice that my runtime increases SIGNIFICANTLY. Why is this?

  • 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-06-13T12:10:43+00:00Added an answer on June 13, 2026 at 12:10 pm

    This is due to caching behaviour of your program.

    Arrays are just consecutive blocks of memory, so when you access [row][column] you are accessing the memory sequentially. This means the data page you are accessing is on the same page, so the access is much faster.

    When you do [column][row], you aren’t accessing that memory sequentially anymore, so you will end up with more cache misses, so your program runs much slower.

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

Sidebar

Related Questions

Possible Duplicate: Is stl vector concurrent read thread-safe? I have a multi-threaded program that
Possible Duplicate: Get connecting IP from specified ports that using by other program. If
Possible Duplicate: C program without header I have been studying C for a long
Possible Duplicate: Convert String to code I have a program that needs to be
Possible Duplicate: How to create pdf files on android I have a program that
Possible Duplicate: Struct Padding The program is as below: #include <iostream> using namespace std;
Possible Duplicate: How write a recursive print program I have already asked this question,
Possible Duplicate: C dynamically growing array I have a program and I need to
Possible Duplicate: Objective-C style formatter I have wrote a program and wonder if there
Possible Duplicate: C#: Run external console program as hidden I am using a Windows

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.