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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:11:58+00:00 2026-05-23T22:11:58+00:00

Assume I have a vector v with m elements in it, and a random

  • 0

Assume I have a vector v with m elements in it, and a random access index to the vector called i.

When I increment the index, if it goes out of bounds, I want to index the first (zeroth) element. Similarly, when I decrement the index, if the index is < 0, I want to index to last element. At the moment I’m only moving through the container one element at a time, so came up with this function:

unsigned int GetIndexModM(int index,unsigned int m) {return (index + m) % m;}

The call-site might look like this:

std::vector<Whatever> v = ... // initialise with 5 elements
unsigned int i = 0;
unsigned int j = GetIndexModM(static_cast<int>(i) - 1,v.size()); // get preceeding index

This function will fail however if one subtracts a value > m from index:

unsigned int j = GetIndexModM(static_cast<int>(i) - 17,v.size()); // oops: returns -2

My question: What’s the most elegant implementation of a function that takes any integer and returns it’s place as an index?

  • 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-23T22:12:00+00:00Added an answer on May 23, 2026 at 10:12 pm

    The trick for handling MOD is this, which works with positive as well as negative numbers:

      val = ((val % mod_val) + mod_val) % mod_val; 
    

    For example, assume we want to keep value between 0 and 359 inclusive. We could use this:

      val = ((val % 360) + 360) % 360; 
    

    Here’s a simple example in C++.

    int getmod(int val, int mod) {
      return ((val % mod) + mod) % mod; 
    }
    
    int main() {
      printf("%d\n", getmod(50,360));   // prints 50
      printf("%d\n", getmod(-400,360)); // prints 320
      printf("%d\n", getmod(350,360));  // prints 350
      printf("%d\n", getmod(375,360));  // prints 15
      printf("%d\n", getmod(-725,360));  // prints 355
    
    
      return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's assume that we have a vector like x = -1:0.05:1; ids = randperm(length(x));
Lets assume i have a function that takes 32bit integer in, and returns random
Assume I have a class foo, and wish to use a std::map to store
Assume I have created a compiled re: x = re.compile('^\d+$') Is there a way
Assume I have a function template like this: template<class T> inline void doStuff(T* arr)
Assume you have some objects which have several fields they can be compared by:
Assume I have an ASP.NET MVC app that's not doing anything too fancy (no
Assume I have 10 Methods and 10 Properties. Is there a way to add
Assume I have a form class SampleClass(forms.Form): name = forms.CharField(max_length=30) age = forms.IntegerField() django_hacker
Assume we have a method like this: public IEnumerable<T> FirstMethod() { var entities =

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.