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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T15:02:19+00:00 2026-06-16T15:02:19+00:00

I have two arrays, one called words, the other called data. I have trouble

  • 0

I have two arrays, one called words, the other called data. I have trouble shifting the strings from data into words. so far I have

    public String[] shiftRightX(String[] words, String[] data)
    {

        for(int i= words.length - 1; i>0; i--)
        {
            words[i]=words[i-1];
            for (int x = 0; x < data.length; x++)
            {
                words [0] = data[x];
            }
        }  
        return words;  
    }

it should result for example in this:

    shiftRightX({"1", "2", "3"}, {"1", "2"}) → {"2", "1", "1"}
    shiftRightX({"1", "2", "3"}, {"1"}) → {"1", "1", "2"}
    shiftRightX({"1", "2"}, {"1", "2"}) → {"2", "1"}

however, it is shifting one extra time at the end.

  • 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-16T15:02:20+00:00Added an answer on June 16, 2026 at 3:02 pm

    Try to swap loops:

    public String[] shiftRightX(String[] words, String[] data)
    {
        for (int x = 0; x < data.length; x++)
        {
            for(int i= words.length - 1; i>0; i--)
            {
                words[i]=words[i-1];
            } 
            words[0] = data[x];
        } 
        return words;  
    }
    

    But this algorithm can be improved. Now it’s complexity is O(n*m) but it can be improved to O(n + m) if shift elements in words array to data.length position instead of 1. But you need to be more careful in this case, because you can get ArrayOutOfBoundException.

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

Sidebar

Related Questions

I have two cell arrays one called info{} and the other is called data{}
I have a two data arrays sent in from a form, one called transloaded
I have two arrays. I'd like to copy ranges of data from one of
Say I have two arrays where one is a permutation of the other: A
I have two arrays, one is very large (more than million entries) and other
I have two arrays. I'd like to merge them into one, but remove the
I have two arrays of data that I'm trying to amalgamate. One contains actual
I have two different arrays, one with strings and another with ints. I want
I have two tabs one called Sale-Items and the other All-Items and for each
I have two Objects, one is called CollidableController and the other is Collidable. Collidable

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.