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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:02:57+00:00 2026-05-20T08:02:57+00:00

I came across a rather peculiar shorthand notation: A[j+1] = A[j–] It seems that

  • 0

I came across a rather peculiar shorthand notation: A[j+1] = A[j--]

It seems that this line does two operations: move A[j] right and decrement j

is it possible to break this down into individual steps to help me understand the shorthand?

Pseudo code:

n=A.length
for i <- 1 to n-1
    curr = A[i]
    j = i - 1
    while j >= 0 && A[j] > curr
        A[j+1] = A[j--]
    A[j+1] = curr

source

  • 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-20T08:02:58+00:00Added an answer on May 20, 2026 at 8:02 am

    Sure:

    int targetIndex = j + 1;
    int tmp = j;
    j--;
    A[targetIndex] = A[tmp];
    

    Note that the targetIndex is computed before anything else happens – the left hand side of the assignment operator is effectively determined before the right hand side.

    However, the decrement happens before the assignment itself takes place, and even before the right hand array access is evaluated. You can see that in this sample code:

    public class Test {
        public static void main(String[] args) {
            int[] x = { 0, 1, 2, 3, 4 };
            int j = 3;
            try {
                x[j + 1] = x[j-- + 10];
            } catch (Exception e) {
                System.out.println("Caught exception");
            }
    
            System.out.println(j); // Prints 2
        }
    }
    

    Here, you can see that j has been decremented even though the assignment itself can’t take place.

    Indeed, the same happens if we use x[j + 10] = x[j--]; – in other words, if it’s the target index which is out of bounds. By the time that’s discovered, the decrement has already occurred.

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

Sidebar

Related Questions

I came across this rather interesting way to create a JavaScript singleton that can
I came across this service that will format my local markdown files rather nicely.
I came across this rather unusual usage of 'delete'. Just wanted to know if
I came across something that I think rather strange. The test program int main(int
Recently I came across a gcc extension that I have found rather useful: __attribute__(cleanup)
I came across this comparison chart that suggests that FMS costs about 4.5 grands
I just came across this in some code, and I'm rather confused. timer =
I came across this rather vague behavior when messing around with code , here's
I came across this Perl construct today: @foo = split(\n, $bar); That works well
Came across this code: <?php require_once 'HTTP/Session/Container/DB.php'; $s = new HTTP_Session_Container_DB('mysql://user:password@localhost/db'); ini_get('session.auto_start') or session_start();

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.