Search:

Type: Posts; User: rio_cat

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    937

    Enumerating items in "All Programs"

    Greeting all:

    Does anyone know how to enumerate items in all programs in the start menu for the logged-on user? The only way I could think of was to call SHGetSpecialFolderLocation with...
  2. Thank you everyone

    Thank you everyone. It's still interesting that recursive version is faster but I had to give up because I'm pretty much ran out of time. For future reference, I'll post the data sheet I obtained and...
  3. Thank you. I didn't know that g++ was a C++...

    Thank you. I didn't know that g++ was a C++ compiler. Even though C is my primary language, as you can see, my knowledge about Linux/UNIX is really limited.
  4. I executed the following code and turned out that...

    I executed the following code and turned out that recursive version is slower.


    int main() {
    time_t start;

    start=clock();
    exp(2.7,100000);
    printf("recursive:%d\n",clock()-start);
  5. simpler recursive functions?

    Thank you for replying me. I wasn't "casting" malloc at the first place but when I tried g++, he errored out all casting between void* and unsinged char* that's why I had to change it. However,...
  6. merge sort: recursive is faster than non-recursive

    greeting all:

    i'm making merge sort function for arrays as a project in my computer science class and found a very interesting phenomina. i implemented both recursive and non-recursive versions...
Results 1 to 6 of 6