5
votes
2answers
240 views
incremental k-core algorithm
Calculating the k-core of a graph by iteratively pruning vertices is easy enough. However, for my application, I'd like to be able t …
6
votes
How can I search a graph for a path?
It sounds to me like you are just asking if a path exists between two vertices in an undirected graph, but not necessarily what that path might be. This is the same as asking if the two vertices ar …
6
votes
Way to encrypt a single int
What you want is a 32-bit block cipher. Unfortunately, most block ciphers are 64-bits or more due to the weak …
2
votes
Decomposing a 3d mesh into a 2d net
The algorithms eed3si9n linked to will generate nice reasonable papercraft meshes from complicated geometry. If you'd like to unfold the mesh exactly as it is modeled, such as for polyhedra models, …
4
votes
random and unique subsets generation
There is a way to generate a sample of the subsets that is random, guaranteed not to have duplicates, uses O(1) storage, and can be re-generated at any time. First, write a function to …
2
votes
Find the number of congruent triangles?
It seems to me that you might be missing a lot of congruent triangles this way. For smaller triangles, there won't be many different angles that you can place a congruent triangle such that all of …
1
vote
Converting vector-contoured regions (borders) to a raster map (pixel grid)
The general case for processing this sort of geometry in vector form can be quite difficult, especially since nothing about the structure you describe requires the geometry to be consistent. Howeve …
