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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T18:48:40+00:00 2026-05-28T18:48:40+00:00

The passed by reference argument is a shared item between caller and callee. Is

  • 0

The passed by reference argument is a shared item between caller and callee.
Is this item in sharing for recursive calls of a function ?

Suppose this merge sort algorithm:

MergeSort(ref int[]S)
{
    .
    .
    .
    MergeSort(ref S1);
    MergeSort(ref S2);
    Merge(S1,S2,S);
}

By tracing algorithm for S={2,3,1,0} , we have :

                2,3,0,1
        2,3                 1,0
      2     3             1     0

At the end of algorithm ,compiler will do a merge into S in second level of tree, that merges(0,1) and (2,3) and creates (0,1,2,3).

We have just a one S array that is shared , How the compiler merge 2 of S arrays and merged them ?
So S is not sharing??

Thanks in advance

  • 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-28T18:48:42+00:00Added an answer on May 28, 2026 at 6:48 pm

    The object is passed by reference BUT in every recursive call, the variable S points [refers] to a different object. Thus, every merge() is actually preformed on a different object.

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

Sidebar

Related Questions

To indicate an argument is passed by reference to the function, what character should
In PHP, function parameters can be passed by reference by prepending an ampersand to
What is actually passed in call by reference to a function? void foo(int &a,int
1) When an array is passed as an argument to a method or function,
How do I modify an argument being passed to a function in R? In
It appears that in PHP objects are passed by reference. Even assignment operators do
Why must a copy constructor's parameter be passed by reference?
In php 5, all variable and objects are passed by reference, but i can't
Are ColdFusion objects (i.e. CFCs invoked via cfobject) normally passed by reference or by
The question is if a database connection should be passed in by reference or

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.