User Ed - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T20:41:29Z http://stackoverflow.com/feeds/user/522 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/4306/what-is-the-best-way-to-create-a-sparse-array-in-c 5 What is the best way to create a sparse array in C++ Ed 2008-08-07T02:29:58Z 2009-09-27T17:52:45Z <p>Hi everyone, I am working on a project that requires the manipulation of enourmous matrices, particularly pyramidal summation for a copula calculation. In short, I need to keep track of a relatively small number of values (usually a value of 1, and in rare cases more than 1) in a sea of zeros in the matrix (multidimensional array). A sparse array allows the user to store a small number of values, and assume all undefined records to be a preset value. Since is is not physically possibly to store all values in memory (greater in number than the number of particles in the universe :p ), I need to store only the few non-zero elements. This could be several million entries. I am currently working on a system that uses a binary search tree (b-tree) to store entries. Does anyone know of a better system? Thanks in advance. </p> <p>EDIT: Speed is a huge priority. </p> <p>EDIT2 : I like that solution. How would I go about dynamically choosing the number of variables in the class at runtime? [edit by MH: good question, updated in the answer] </p> http://stackoverflow.com/questions/23190/how-does-one-sum-dimensions-of-an-array-specified-at-run-time 1 How Does One Sum Dimensions of an Array Specified at Run-Time? Ed 2008-08-22T18:56:04Z 2009-07-15T09:16:17Z <p>Hi all, I am working on a function to establish the entropy of a distribution. It uses a copula, if any are familiar with that. I need to sum up the values in the array based on which dimensions are "cared about."</p> <p>Example: Consider the following example... </p> <pre> Dimension 0 (across) _ _ _ _ _ _ _ _ _ _ _ _ _ |_ 0 _|_ 0 _|_ 0 _|_ 2 _| Dimension 1 |_ 1 _|_ 0 _|_ 2 _|_ 0 _| (down) |_ 0 _|_ 3 _|_ 0 _|_ 6 _| |_ 0 _|_ 0 _|_ 0 _|_ 0 _| I "care about" dimension 0 only, and "don't care" about the rest (dim 1). Summing this array with the above specifications will "collapse" the "stacks" of dimension 1 down to a single 4 x 1 array: _ _ _ _ _ _ _ _ _ _ _ _ _ |_ 1 _|_ 3 _|_ 2 _|_ 8 _| This can then be summed, or have any operation performed. </pre> <p>I need to do this with an array of 'n' dimensions, which could feasibly be 20. Also, I need to be able to do this, caring about certain dimensions, and collapsing the rest. I am having an especially hard time with this because I cant visualize 20 dimensions :p . If anyone could help me set up some c/c++ code to collapse/sum, I would be very very grateful. </p> http://stackoverflow.com/questions/266913/efficient-data-transfer-from-java-to-c-on-windows/267393#267393 0 Answer by Ed for Efficient data transfer from Java to C++ on windows Ed 2008-11-06T01:24:51Z 2008-11-06T01:24:51Z <p>I recommend a UDP "connection" that acknowledges every Nth packet that was received without fault, and requests a retransmission of the few packets it will miss.</p> http://stackoverflow.com/questions/4347/where-is-a-good-place-to-start-programming-guis-for-windows 11 Where is a good place to start programming GUIs for windows? Ed 2008-08-07T03:06:19Z 2008-10-27T23:20:25Z <p>I have experience writing console and network client/server apps in C and C++, but I know next to nothing about using the win32 visual API, MFC, QT, WxWidgets, etc. Where is a good place to start, and what method should I specialize in, so as to be future ready and robust?</p> http://stackoverflow.com/questions/13473/how-does-one-rank-an-array-sort-by-value-with-a-twist 1 How does one rank an array (sort) by value? *With a twist* Ed 2008-08-17T02:13:55Z 2008-09-23T16:23:01Z <p>Hi all, I need to take an array and sort it in c/c++, replacing each value with its' "rank", an integer that corresponds to its position after sort. Heres an example: Input: 1,3,4,9,6. Output: 1, 2, 3, 5, 4. So, I need to replace each value with its position relative to all the other values. I hope that makes sense, but its late, so who knows :p. Thanks in advance.<br /> Edit: I am using a shell sort procedure, and duplicates' ranks are arbitrarily chosen, based on which came first in the original array.</p> http://stackoverflow.com/questions/17299/pointer-manipulation-help 0 Pointer Manipulation Help Ed 2008-08-20T01:44:58Z 2008-09-21T23:27:30Z <p>Hi everyone, I am trying to build a function in C/c++ to sort an array and replace each value with its "score" or rank. It takes in a double pointer array to an array of ints, and sorts the double pointers based on the dereferenced value of the integers. I have tried quite a few times to make it work, but cant get it down. Once again, it must sort the double pointers based on the values they point to. This is what I have: </p> <pre><code>void SortArray( int ** pArray, int ArrayLength ) { int i, j, flag = 1; // set flag to 1 to begin initial pass int * temp; // holding variable orig with no * for(i = 1; (i &lt;= ArrayLength) &amp;&amp; flag; i++) { flag = 0; for (j=0; j &lt; (ArrayLength -1); j++) { if (*pArray[j+1] &gt; *pArray[j]) // ascending order simply changes to &lt; { temp = &amp;pArray[j]; // swap elements pArray[j] = &amp;pArray[j+1]; pArray[j+1] = &amp;temp; flag = 1; // indicates that a swap occurred. } } } }; </code></pre> <p>thanks in advance.</p> http://stackoverflow.com/questions/22901/what-is-the-best-way-to-communicate-with-a-sql-server 1 What is the best way to communicate with a SQL server? Ed 2008-08-22T17:09:04Z 2008-09-03T20:21:00Z <p>I am going to be using c/c++, and would like to know the best way to talk to a MySQL server. Should I use the library that comes with the server installation? Are they any good libraries I should consider other than the official one?</p> http://stackoverflow.com/questions/38674/does-adobe-flash-support-databases/38677#38677 2 Answer by Ed for Does Adobe Flash support databases? Ed 2008-09-02T01:24:30Z 2008-09-02T01:24:30Z <p>Agree with @SCdF, create a service in php or any other language that takes a modified query from flash, executes it and returns the DB response. Make sure that it only takes a connection from its own local IP address or something like that to prevent "unintentional use".</p> http://stackoverflow.com/questions/38670/asp-net-controls-cannot-be-referenced-in-code-behind-in-visual-studio-2008/38676#38676 0 Answer by Ed for ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 Ed 2008-09-02T01:20:54Z 2008-09-02T01:20:54Z <p>I have never had problems with VS. If you want to send your code I'll try it out.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/23989#23989 95 Answer by Ed for Factorial Algorithms in different languages Ed 2008-08-23T04:40:15Z 2008-09-02T01:18:50Z <h2>lolcode:</h2> <p>sorry I couldn't resist xD</p> <pre><code>HAI CAN HAS STDIO? I HAS A VAR I HAS A INT I HAS A CHEEZBURGER I HAS A FACTORIALNUM IM IN YR LOOP UP VAR!!1 TIEMZD INT!![CHEEZBURGER] UP FACTORIALNUM!!1 IZ VAR BIGGER THAN FACTORIALNUM? GTFO IM OUTTA YR LOOP U SEEZ INT KTHXBYE </code></pre> http://stackoverflow.com/questions/36396/why-doesnt-zip-compression-compress-anything/36854#36854 0 Answer by Ed for Why doesn't ZIP Compression compress anything? Ed 2008-08-31T13:26:03Z 2008-08-31T13:26:03Z <p>In the past, winrar has done a better compression job using the .rar algorithm, than the .zip one.</p> http://stackoverflow.com/questions/29311/which-3d-cards-support-full-scene-antialiasing/29317#29317 2 Answer by Ed for Which 3D cards support full scene antialiasing? Ed 2008-08-27T01:27:22Z 2008-08-27T01:27:22Z <p>Agree with Orion Edwards, pretty much everything new can. Performance also depends greatly on the resolution you run at.</p> http://stackoverflow.com/questions/27381/should-websites-expand-on-window-resize/27390#27390 1 Answer by Ed for should websites expand on window resize? Ed 2008-08-26T03:56:24Z 2008-08-26T03:56:24Z <p>This is a matter of styling preference. Both can be equally usable depending on implementation. Columns can also be used, if the screen gets wide enough. Personally, I find it annoying when there is a single, narrow column of text going down the screen.</p> http://stackoverflow.com/questions/27099/what-to-do-with-extra-screen-real-estate/27385#27385 0 Answer by Ed for What to do with extra screen real estate? Ed 2008-08-26T03:54:27Z 2008-08-26T03:54:27Z <p>I generally keep my code on my 24 inch monitor, and MSDN or other docs open on the other.</p> http://stackoverflow.com/questions/23439/flvplayback-component-memory-issues/25901#25901 0 Answer by Ed for FLVPlayback component memory issues Ed 2008-08-25T11:54:49Z 2008-08-25T11:54:49Z <p>Unfortuantely, thats just the way flash handles it. Not particularly smart, but it works for most people.</p> http://stackoverflow.com/questions/23998/is-there-a-place-in-software-development-for-niters/24001#24001 2 Answer by Ed for Is there a place in software development for Niters? Ed 2008-08-23T05:00:29Z 2008-08-23T05:00:29Z <p>I believe they should be available and a part of the design phase, but definately not part of the team itself. While 'they' are very valuable, they also tend to quash the creative thought proces :p</p> http://stackoverflow.com/questions/23988/why-is-an-s-box-input-longer-than-its-output/23991#23991 0 Answer by Ed for Why is an s-box input longer than its output? Ed 2008-08-23T04:43:25Z 2008-08-23T04:48:54Z <p>What extra bits? They are going from 6 to 4.</p> <p>EDIT: Whoops! I'm an idiot. This is kinda like a 2nd grade multiplication table. They strip the outer bits off of the 6-bit block to be encypted, and leave the middle 4. Just like a table for an arithmatic operation, they go down one side, and find the outer bit sequence, then across the top and find the middle ones. To answer your question, it could input and output the same number of bits, but this s-box is just set up to do it the way it does. Its arbitrary.</p> http://stackoverflow.com/questions/23886/sql-pronunciation/23977#23977 -3 Answer by Ed for SQL Pronunciation Ed 2008-08-23T04:25:52Z 2008-08-23T04:25:52Z <p>Everyone sez "sequel", so go figure. Its totally up to you :p</p> http://stackoverflow.com/questions/23962/is-there-some-way-to-speed-up-recursion-by-remembering-child-nodes/23968#23968 1 Answer by Ed for Is there some way to speed up recursion by remembering child nodes? Ed 2008-08-23T04:19:28Z 2008-08-23T04:19:28Z <p>What language is this? It doesnt overflow anything in c... Also, you can try creating a lookup table on the heap, or use a map</p> http://stackoverflow.com/questions/18642/what-is-the-most-unreadable-programming-language/23863#23863 19 Answer by Ed for What is the most unreadable programming language? Ed 2008-08-23T02:22:21Z 2008-08-23T02:22:21Z <h2>LOLCODE!</h2> <p><a href="http://lolcode.com/" rel="nofollow">http://lolcode.com/</a></p> <pre><code>HAI CAN HAS STDIO? I HAS A VAR GIMMEH VAR IZ VAR BIGGER THAN 10? YARLY BTW this is true VISIBLE "BIG NUMBER!" NOWAI BTW this is false VISIBLE "LITTLE NUMBER!" KTHX KTHXBYE </code></pre> http://stackoverflow.com/questions/23770/good-strategy-for-leaving-an-audit-trail-change-history-for-db-applications/23779#23779 0 Answer by Ed for Good strategy for leaving an audit trail/change history for DB applications? Ed 2008-08-23T00:13:56Z 2008-08-23T00:13:56Z <p>I agree with mk. I wrote a very basic program in c a while back that journaled modifications to a string. Maybe this would work in your situation.</p> http://stackoverflow.com/questions/23190/how-does-one-sum-dimensions-of-an-array-specified-at-run-time/23759#23759 0 Answer by Ed for How Does One Sum Dimensions of an Array Specified at Run-Time? Ed 2008-08-22T23:55:48Z 2008-08-22T23:55:48Z <p>Just got home. Here is some info to answer your questions:</p> <ol> <li>Sorry for rolling back the edits, I was hoping when I clicked roll-back it would show me the changes so I could see what I messed up, a bit like wikipedia. This wasn't the case, as I found out.</li> <li>@jeff - What doesnt make sense? I am using this great service for (what I think is) a legit reason. I want to get better at my hobby, which is all it is, as I am in high school. Many of my posts regard implementing a genetic algorithm (This post, sparsearray, rank an array, pointer manipulation).</li> <li>I am using a sparse array representation, as it is possible to exceed the number of molecules in the universe using a traditional (dense) array. For now, the implementation of the sparsearray itself doesnt matter a whole lot, as I am working to make it work with a standard array before going to a sparse representation. For those who havent seen my previous questions, I am using a binary search tree as the structure to contain the sparse array points, and a "driver" function to traverse the tree as necessary, returning whatever the function is designed to do. This is flexible, so I can accomodate a lot of different methods of accessing the array. </li> <li>The structure is a hypercube, and the number of dimensions is specified at run time, as well as the lenght of each dimension (which are all the same, as it is a hypercube).</li> </ol> <p>Thanks everyone for your imput.</p> http://stackoverflow.com/questions/23190/how-does-one-sum-dimensions-of-an-array-specified-at-run-time/23214#23214 0 Answer by Ed for How Does One Sum Dimensions of an Array Specified at Run-Time? Ed 2008-08-22T19:10:28Z 2008-08-22T19:10:28Z <p>Unfortunately there isnt really a simpler way to do this.</p> http://stackoverflow.com/questions/23190/how-does-one-sum-dimensions-of-an-array-specified-at-run-time/23200#23200 0 Answer by Ed for How Does One Sum Dimensions of an Array Specified at Run-Time? Ed 2008-08-22T18:59:31Z 2008-08-22T18:59:31Z <p>I need help collapsing them when I dont know how many there are :p I guess i wasn't clear enough, heh</p> http://stackoverflow.com/questions/913/what-javascript-library-would-you-choose-for-a-new-project-and-why/22967#22967 0 Answer by Ed for What JavaScript library would you choose for a new project and why? Ed 2008-08-22T17:31:42Z 2008-08-22T17:31:42Z <p>Adobe Spry has some very nice effects, I use it for fading items in and out.</p> http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/17403#17403 0 Answer by Ed for What good technology podcasts are out there? Ed 2008-08-20T04:15:35Z 2008-08-20T04:15:35Z <p>I listen to and watch:<br /> * this week in tech<br /> * Cranky Geeks<br /> * Security Now * This Week in Media * Tech5</p> http://stackoverflow.com/questions/17299/pointer-manipulation-help/17328#17328 0 Answer by Ed for Pointer Manipulation Help Ed 2008-08-20T02:04:48Z 2008-08-20T04:11:22Z <p>Thanks!<br /> Heh, this isnt homework. Its a genetic algorithm side project, and I think I will eventually be switching to a better sort algorithm, possibly shell, but have to get the basics first :p</p> http://stackoverflow.com/questions/17299/pointer-manipulation-help/17334#17334 0 Answer by Ed for Pointer Manipulation Help Ed 2008-08-20T02:10:45Z 2008-08-20T02:10:45Z <p>Hmm, I don't have much experience with the STL. Could you give an example? Thanks</p> <p>P.S. - I don't have a whole lot of experience with life either :p</p> http://stackoverflow.com/questions/17289/iframe-best-practices/17324#17324 0 Answer by Ed for iFrame Best Practices Ed 2008-08-20T02:01:01Z 2008-08-20T02:01:01Z <p>you could have it load the main page once, then asynchronously load the other elements when needed (ajax). If you did that, an iFrame would not be necessary. Here is an example of loading only the new material: <a href="http://www.dubioussecurity.com" rel="nofollow">http://www.dubioussecurity.com</a></p> http://stackoverflow.com/questions/13473/how-does-one-rank-an-array-sort-by-value-with-a-twist/17239#17239 0 Answer by Ed for How does one rank an array (sort) by value? *With a twist* Ed 2008-08-20T00:00:00Z 2008-08-20T00:00:00Z <p>Despite my best efforts, I havent been able to implement a sort algorithm that sorts an array of pointerse by the values they point to. Could someone please tell me whats going wrong? The current example wont compile, and I've changed it around so much that it doesnt really matter. I'd very much appreciate it if someone could help me fix this!</p> <pre><code>void SortArray( int ** pArray, int ArrayLength ) { int i, j, flag = 1; // set flag to 1 to begin initial pass int * temp; // holding variable orig with no * for(i = 1; (i &lt;= ArrayLength) &amp;&amp; flag; i++) { flag = 0; for (j=0; j &lt; (ArrayLength -1); j++) { if (*pArray[j+1] &gt; *pArray[j]) // ascending order simply changes to &lt; { &amp;temp = &amp;pArray[j]; // swap elements &amp;pArray[j] = &amp;pArray[j+1]; //the problem lies somewhere in here &amp;pArray[j+1] = &amp;temp; flag = 1; // indicates that a swap occurred. } } } }; </code></pre> <p>Thanks in advance.</p>