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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:41:34+00:00 2026-05-27T09:41:34+00:00

How can I do reverse memory comparison? As in, I give the ends of

  • 0

How can I do reverse memory comparison? As in, I give the ends of two sequences and I want the pointer to be decremented towards the beginning, not incremented towards 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-05-27T09:41:35+00:00Added an answer on May 27, 2026 at 9:41 am

    There’s no built-in function in the C standard library to do it. Here’s a simple way to roll your own:

    int memrcmp(const void *s1, const void *s2, size_t n)
    {
        if(n == 0)
            return 0;
    
        // Grab pointers to the end and walk backwards
        const unsigned char *p1 = (const unsigned char*)s1 + n - 1;
        const unsigned char *p2 = (const unsigned char*)s2 + n - 1;
    
        while(n > 0)
        {
            // If the current characters differ, return an appropriately signed
            // value; otherwise, keep searching backwards
            if(*p1 != *p2)
                return *p1 - *p2;
            p1--;
            p2--;
            n--;
        }
    
        return 0;
    }
    

    If you something high-performance, you should compare 4-byte words at a time instead of individual bytes, since memory latency will be the bottleneck; however, that solution is significantly more complex and not really worth it.

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

Sidebar

Related Questions

Are there any command line scripts and/or online tools that can reverse the effects
As I understand it I can use reverse P/Invoke to call C# from C++.
Once I've mapped my domain in NHibernate, how can I reverse lookup those mappings
How can I set up a reverse proxy with mod_proxy without redirecting to another
Can XMPP be applied in a similar way to the reverse Ajax pattern? Can
can you say me if there are good tools for reverse-engineering my C# applications.
One method which I can think of is to reverse the list and then
It's the reverse of this question: Why can't strings be mutable in Java and
I am trying to perform what I can only describe as the reverse version
There is no built in reverse method for Python's str object. How can I

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.