geonove opened a new pull request, #42: URL: https://github.com/apache/datasketches-go/pull/42
# Port Count-Min Sketch from datasketches-cpp to datasketches-go ## Description This PR introduces a Go port of the Count-Min Sketch data structure, based on the original implementation in [datasketches-cpp](https://github.com/apache/datasketches-cpp). The implementation includes methods for updating and querying estimates for different types (e.g., `int`, `uint64`, `string`), following the structure of the C++ version. In addition, I have developed a second version of this port using Go generics. This alternative approach removes the need to manually implement `Update` and `GetEstimate` methods for each type individually. If preferred, I can submit the generic version for review instead. --- Looking forward to any feedback or suggestions! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@datasketches.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@datasketches.apache.org For additional commands, e-mail: dev-h...@datasketches.apache.org