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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T05:48:58+00:00 2026-05-14T05:48:58+00:00

So given x, and power, n, solve for X^n . There’s the easy way

  • 0

So given x, and power, n, solve for X^n.
There’s the easy way that’s O(n)…
I can get it down to O(n/2), by doing

numSquares = n/2;
numOnes = n%2;
return (numSquares * x * x + numOnes * x);

Now there’s a O(log(n)) solution, does anyone know how to do it? It can be done recursively.

  • 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-14T05:48:59+00:00Added an answer on May 14, 2026 at 5:48 am

    Well, you know that xa+b = xa xb so…

    int pow(int x, unsigned int y)
    {
      if (y == 0) return 1;
      if (y == 1) return x;
      int a = y / 2;
      int xa = pow(x, a);
      if (a + a == y) // y even
        return xa * xa;
      else
        return xa * xa * x;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given that the only way to unload dynamically compiled assemblies (to reclaim memory) is
Is there any fast way to find the largest power of 10 smaller than
Is there a fast way to generate the cartesian power of a set? For
Given an example html string <table> <tr> <td class=td height=25>Upstream Power</td> <td class=td>25.2 dBmV</td>
Given a package, how can I automatically find all its sub-packages?
Given an interface or interfaces, what is the best way to generate an class
Given Java's write once, run anywhere paradigm and the fact that the Java tutorials
There is a lot of information on how to find the next power of
Can the package NetworkX be used to draw complex network with weights given by
One of the main examples that is used in demonstrating the power of MapReduce

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.