Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upSuffix Array #243
Open
Suffix Array #243
+55
−0
Conversation
|
you need to fix the tests first |
Memory leak rectified.
Updated
|
@prateekiiest I have fixed the issue. |
|
just a few fixes to be made. Otherwise it looks good |
| Application of suffix array:- | ||
|
|
||
| Suffix array is an extremely useful data structure, it can be used for a wide range of problems. Following are some famous problems where Suffix array can be used. | ||
| 1) Pattern Searching |
prateekiiest
Dec 28, 2017
Member
use * instead of numbering
use * instead of numbering
|
|
||
| The suffixes are:- | ||
|
|
||
| 0 banana 5 a |
prateekiiest
Dec 28, 2017
Member
make this part more look good.
Like codify this part to make it look good. Otherwise this part looks odd
make this part more look good.
Like codify this part to make it look good. Otherwise this part looks odd
| map<string,int> m; | ||
|
|
||
| vector<string> v; | ||
| for(int i = 0; i < s.size();i++) |
prateekiiest
Dec 28, 2017
Member
some comments here will make it better
some comments here will make it better
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Thank you for your contribution. Please provide the details requested below.
ISSUE NUMBER
Please provide a link to the issue this pull request addresses.
SHORT DESCRIPTION
I have added the Suffix Array code to the string folder.
TESTING
To test the code simply provide any string in the main function of the code, and the code will generate the suffix array for the string.