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 104k
  • Answers 104k
  • 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
  • Editorial Team
    Editorial Team added an answer The only way to know if the "service" "exists" is… May 11, 2026 at 8:32 pm
  • Editorial Team
    Editorial Team added an answer It is not related to WSGI or php or any… May 11, 2026 at 8:32 pm
  • Editorial Team
    Editorial Team added an answer Your first step should always be to search and browse… May 11, 2026 at 8:32 pm

Related Questions

When reviewing our codebase, I found an inheritance structure that resembles the following pattern:
OK... I'm a VB.NET WinForms guy trying to understand WPF and all of its
Below are two ways of reading in the commandline parameters. The first is the
Reviewing Conery's storefront, and I dont understand why he used Linqs auto-generated classes (ie

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.