-
-
Notifications
You must be signed in to change notification settings - Fork 46.5k
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 coordinate_compression #9317
base: master
Are you sure you want to change the base?
added coordinate_compression #9317
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Click here to look at the relevant links ⬇️
🔗 Relevant Links
Repository:
Python:
Automated review generated by algorithms-keeper. If there's any problem regarding this review, please open an issue about it.
algorithms-keeper
commands and options
algorithms-keeper actions can be triggered by commenting on this PR:
@algorithms-keeper review
to trigger the checks for only added pull request files@algorithms-keeper review-all
to trigger the checks for all the pull request files, including the modified files. As we cannot post review comments on lines not part of the diff, this command will post all the messages in one comment.NOTE: Commands are in beta and so this feature is restricted only to a member or owner of the organization.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Click here to look at the relevant links ⬇️
🔗 Relevant Links
Repository:
Python:
Automated review generated by algorithms-keeper. If there's any problem regarding this review, please open an issue about it.
algorithms-keeper
commands and options
algorithms-keeper actions can be triggered by commenting on this PR:
@algorithms-keeper review
to trigger the checks for only added pull request files@algorithms-keeper review-all
to trigger the checks for all the pull request files, including the modified files. As we cannot post review comments on lines not part of the diff, this command will post all the messages in one comment.NOTE: Commands are in beta and so this feature is restricted only to a member or owner of the organization.
|
||
""" | ||
|
||
self.coordinate_map: dict[ | ||
int | float | str, int | ||
] = {} # A dictionary to store compressed coordinates | ||
|
||
self.reverse_map: list[int | float | str] = [-1] * ( | ||
len(arr) | ||
) # A list to store reverse mapping |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do not wrap lines for a comment.
""" | |
self.coordinate_map: dict[ | |
int | float | str, int | |
] = {} # A dictionary to store compressed coordinates | |
self.reverse_map: list[int | float | str] = [-1] * ( | |
len(arr) | |
) # A list to store reverse mapping | |
""" | |
# A dictionary to store compressed coordinates | |
self.coordinate_map: dict[int | float | str, int] = {} | |
# A list to store reverse mapping | |
self.reverse_map: list[int | float | str] = [-1] * len(arr) |
-1 | ||
>>> cc.reverse_map[2] # Value not in the original list | ||
83 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3 | ||
>>> cc.compress(7) # Value not in the original list | ||
-1 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Initialize the CoordinateCompressor with a list. | ||
|
||
Args: | ||
arr (list): The list of values to be compressed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mypy can check the data types in the function signature but not in the comments.
Please do not repeat the data types in both places because readers will be confused if one changes but the other does not.
arr (list): The list of values to be compressed. | |
arr: The list of values to be compressed. |
Compress a single value. | ||
|
||
Args: | ||
original (int | float | str) : The value to compress. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mypy can check the data types in the function signature but not in the comments.
Please do not repeat the data types in both places because readers will be confused if one changes but the other does not.
original (int | float | str) : The value to compress. | |
original: The value to compress. |
Decompress a single integer. | ||
|
||
Args: | ||
num (int): The compressed integer to decompress. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
num (int): The compressed integer to decompress. | |
num: The compressed integer to decompress. |
num (int): The compressed integer to decompress. | ||
|
||
Returns: | ||
original value (int | float | str) : The original value. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
original value (int | float | str) : The original value. | |
The original value. |
10 | ||
>>> cc.decompress(5) # Compressed coordinate out of range | ||
-1 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Original: 10, Compressed: 0 | ||
Original: 52, Compressed: 1 | ||
Original: 83, Compressed: 2 | ||
Original: 100, Compressed: 3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a thought... If this is ints on the left and ints on the right, how is a one-to-one mapping compressing anything? Would a dict be as efficient as a dict in this use case?
Describe your change:
This pull request adds the CoordinateCompressor class, enabling efficient compression and decompression of comparable values, a technique essential for algorithms and data processing tasks, ultimately reducing memory usage.
Checklist: