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

  • Home
  • SEARCH
  • 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 46211
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T15:55:49+00:00 2026-05-10T15:55:49+00:00

When reviewing, I sometimes encounter this kind of loop: i = begin while (

  • 0

When reviewing, I sometimes encounter this kind of loop:

i = begin while ( i != end ) {        // ... do stuff    if ( i == end-1 (the one-but-last element) ) {       ... do other stuff    }    increment i } 

Then I ask the question: would you write this?

i = begin mid = ( end - begin ) / 2 // (the middle element) while ( i != end ) {        // ... do stuff    if ( i > mid ) {       ... do other stuff    }    increment i } 

In my opinion, this beats the intention of writing a loop: you loop because there is something common to be done for each of the elements. Using this construct, for some of the elements you do something different. So, I conclude, you need a separate loop for those elements:

i = begin mid = ( end - begin ) / 2 //(the middle element) while ( i != mid ) {        // ... do stuff    increment i }  while ( i != end ) {    // ... do stuff    // ... do other stuff    increment i } 

Now I even saw a question on SO on how to write the if-clause in a nice way… And I got sad: something isn’t right here.

Am I wrong? If so, what’s so good about cluttering the loop body with special cases, which you are aware of upfront, at coding time?

  • 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. 2026-05-10T15:55:50+00:00Added an answer on May 10, 2026 at 3:55 pm

    @xtofl,

    I agree with your concern.

    Million times I encountered similar problem.

    Either developer adds special handling for first or for last element.

    In most cases it is worth to just loop from startIdx + 1 or to endIdx – 1 element or even split one long loop into multiple shorter loops.

    In a very rare cases it’s not possible to split loop.

    In my opinion uncommon things should be handled outside of the loop whenever possible.

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

Sidebar

Ask A Question

Stats

  • Questions 67k
  • Answers 68k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Here's a Search Engine Directory of Spider names Then you… May 11, 2026 at 12:04 pm
  • added an answer I don't think the built-in VS2008 query designer is intended… May 11, 2026 at 12:04 pm
  • added an answer *****[Re-added this answer after re-test and code cleanup] This is… May 11, 2026 at 12:04 pm

Related Questions

When reviewing, I sometimes encounter this kind of loop: i = begin while (
When reviewing our codebase, I found an inheritance structure that resembles the following pattern:
When editing XAML in VS2008 SP1, the editor is really slow. devenv process seems
When should I include PDB files for a production release? Should I use the
When using jQuery 's ajax method to submit form data, what is the best
When spliting a solution in to logical layers, when is it best to use
When writing a switch statement, there appears to be two limitations on what you
When building a VS 2008 solution with 19 projects I sometimes get: The GenerateResource
When writing multi-threaded applications, one of the most common problems experienced are deadlocks. My
When I am writing code in Python, I often need to remove items from

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.