Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Rabin_karp Algo #33

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

peruljain
Copy link

Added pattern match algorithm

New Algorithm

I have squashed my commits
I have commented my code, particularly in hard-to-understand areas
I have made corresponding changes to the documentation
My code is a working bug-free code

Copy link
Collaborator

@ay2306 ay2306 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Create an issue and use proper PR template.

And

Code is very not read-friendly and non-preferable to be used actually in some implementation.

Some advice

  1. Use hashing on unsigned long long for hashing to preventing overflow issue and handling negatives
  2. Encapsulate your code with each method clearly defining what are they doing
  3. Use the correct access scope.
  4. Avoid using pow as it converts double and casting it to an integer might not be the best choice.
  5. Write clean code and use proper variable names


ll result = 0;
for (int i=0; i<len; i++) {
result += (ll)text[i]*(ll)pow(prime,i);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overflow issue will be there

ll reCalculateHash (string str, int oldIndex, int newIndex, ll oldHash, int patLen, ll prime) {
ll newhash = oldHash - str[oldIndex];
newhash=newhash/prime;
newhash+= (ll)str[newIndex]*(ll)pow(prime, patLen-1);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

overflow issue will be there

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants