-
as seen on Stack Overflow
- Search for 'Stack Overflow'
What are some clever (not ordinary) ways of implementing data structures in C, and what are some data structures that should be used more often?
For example, what is the most effective way (generating minimal overhead) to implement a directed and cyclic graph with weighted edges in C?
I know that…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
When we design applications, we generally end up with the same tiered sets of data structures:
A persistent data structure that is described using DDL and implemented as RDBMS tables and columns.
A set of domain objects that consist primarily of data structures, usually combined with business-rule…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I am a newbie into the corporate world recently graduated in computers. I am a java/groovy developer. I am a quick learner and I can learn new frameworks, APIs or even programming languages within considerably short amount of time. Albeit that, I must confess that I was not so strong in data structures…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I have to design a data structure that is to be used in a multi-threaded environment. The basic API is simple: insert element, remove element, retrieve element, check that element exists. The structure's implementation uses implicit locking to guarantee the atomicity of a single API call.…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
There is a large stream of numbers coming in such as 5 6 7 2 3 1 2 3 .. What kind of data structure is suitable for this problem given the constraints that elements must be inserted in descending order and duplicates should be eliminated.
I am not looking for any code just ideas? I was thinking…
>>> More
-
as seen on Super User
- Search for 'Super User'
I am trying to close a handle to a locked file in Windows, using Sysinternals Handle software (http://technet.microsoft.com/en-us/sysinternals/bb896655).
First I search for opened handle:
handle.exe "C:\Temp"
It issues me the following:
Far.exe pid: 1144 type: File 2E8: C:\Temp
…
>>> More
-
as seen on Super User
- Search for 'Super User'
I'm looking for a utility that does exactly what Sysinternals Handle does, but with easily parseable output, preferably CSV. Does anyone know of such a tool? It should be able to list all types of handles, not just file handles.
Thanks!
>>> More
-
as seen on How to geek
- Search for 'How to geek'
Sysinternals and NirSoft both provide helpful utilities for your Windows system but may not be very convenient to access. Using the Windows System Control Center you can easily access everything through a single UI front end.
Setup
The first thing to do is set up three new folders in Program Files…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm looking for a utility that does exactly what Sysinternals Handle does, but with easily parseable output, preferably CSV. Does anyone know of such a tool? It should be able to list all types of handles, not just file handles.
Thanks!
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi
My application runs for few hours, There is no increase in any value ( vmsize, memory) of Task Manager. But after few hours i get out of memory errors.
In sysinternals i see that "Virtual Size" is contineously increasing, and when it reach around 2 GB i start getting memory errors.
So what kind…
>>> More