Search Results

1
vote

Do you declare your module specific functions as static?

I think C and C++ have different constraints concerning static: in C you don't have namespaces and .c files are your modules, so it is really really important to put all non-public fun …
0
votes

Which transpilers are out there?

Hmm, your definition of transpiler does not differ of the one of a 'compiler' ;-) "translating from language A to language B". …
1
vote

adjacency matrix in java or c++ to find connected nodes

Hint: So you have your adjacency matrix M which tells you if two nodes are directly connected. Then what does M^2 gives you? It tells you if there is a path of length 2 between two nod …