1
vote
Deleting a middle node from a single linked list when pointer to the previous node is not available
Not if you want to maintain the traversability of the list. You need to update the previous node to link to the next one.
How'd you end up in this situation, anyway? What are you trying to …
1
vote
Getting Emacs fill-paragraph to play nice with javadoc-like comments
There's other modes that have less complex functions used for fill-paragraph-function. Browsing through my install, it looks like the ones in ada-mode and make-mode are good examples. …
3
votes
What parallel programming model do you recommend today to take advantage of the manycore processors of tomorrow?
I'm betting on communicating event loops with promises, as realized in systems like Twisted, E, …
