Search:

Type: Posts; User: like_no_other

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,127

    If you wish to send raw packets you can try using...

    If you wish to send raw packets you can try using Winpcap.
  2. Replies
    4
    Views
    2,008

    check the sata mode option.

    check the sata mode option.
  3. Newline - Wikipedia, the free encyclopedia...

    Newline - Wikipedia, the free encyclopedia
    Count the number of occurences of the line breaker and you should have the number of lines.
  4. I think this is a null reference, although the...

    I think this is a null reference, although the behaviour should be undefined according to the ISO definition.


    int *pointer = NULL;
    int &null_ref = *pointer;
    cout<<&null_ref;
    ...
  5. Replies
    3
    Views
    1,146

    You want to do this faster than O(n)? Maybe you...

    You want to do this faster than O(n)? Maybe you want to use hashing :)
  6. Replies
    10
    Views
    2,085

    "Internet connection sharing" should do what you...

    "Internet connection sharing" should do what you need with just a few clicks. Look it up on google.
  7. You need to some memory allocated here first. ...

    You need to some memory allocated here first.


    char** argv;
    argv[ 0 ] = "libpl.dll";
  8. Replies
    5
    Views
    3,012

    How about writing a wrapper class around it?

    How about writing a wrapper class around it?
  9. Replies
    1
    Views
    1,720

    Meow, Meow! :-

    Meow, Meow! :-<
  10. Replies
    4
    Views
    1,432

    Hello, I would also like to join your project....

    Hello,
    I would also like to join your project. Although I am not an experienced c++ programmer, I'm pretty sure I can handle a text-based game. Learning something new is always fun. Cheers :)
  11. Replies
    3
    Views
    1,209

    eprep and examp are pointers to different memory...

    eprep and examp are pointers to different memory addresses and obviously are not equal.
  12. Replies
    1
    Views
    1,720

    Multiple patterns search algorithm

    Hello everyone,
    I come to you seeking help for yet another high school c++ program, don't shoot me :D.
    I need to map the number of appearances of multiple patterns in a string. I studied the KMP...
  13. Replies
    7
    Views
    1,344

    Problem solved, the code performs beautifully...

    Problem solved, the code performs beautifully with a worst execution time of 0.21 sec.
  14. Replies
    7
    Views
    1,344

    Thanks, that solved the problem. As to what...

    Thanks, that solved the problem.
    As to what Salem wrote about memcpy() calls being inefficient for small chunks of data, would it make any noticeable difference to define a custom assignment...
  15. Replies
    7
    Views
    1,344

    It steps 341125075 times (for a 10000 long array)...

    It steps 341125075 times (for a 10000 long array) through those 3 lines - this is way past O(n log n) complexity.
  16. Replies
    7
    Views
    1,344

    Excessive long time on quicksorting

    I'm using Kruskal's algorithm for minimal cost tree to solve a high school c++ problem.
    The graph is represented in an array of arcs. My problem is rather odd: quicksort takes an awful lot of time...
  17. Replies
    2
    Views
    2,539

    assuming the OS is Windows c:\WINDOWS\ ...

    assuming the OS is Windows

    c:\WINDOWS\
    c:\WINDOWS\system32
  18. Replies
    2
    Views
    1,812

    Fat Pointer

    int Output()
    {
    ..
    }
    class Layer1_c
    {
    int (*Output)()
    {
    ..
    }
  19. Happy holydays! void open (fstream...

    Happy holydays!


    void open (fstream &StreamObject)
    {
    char FileName[255];
    cout<<"Name of file: ";
    cin.getline( FileName, 255, '\n' );
    StreamObject.open (FileName, ios::out);
    if (...
  20. if(aspect = S) will (almost) allways be...

    if(aspect = S)


    will (almost) allways be true since your assigning the value of s to aspect. To compare the values of aspect and S use "==" operator.
  21. Maybe fstream is not the proper tool for your...

    Maybe fstream is not the proper tool for your needs. The Windows API should make things easier.
  22. Replies
    3
    Views
    1,584

    Makes sense now. Thank you.

    Makes sense now. Thank you.
  23. Replies
    3
    Views
    1,584

    Simple File Write

    The Following code is used to keep a log about my process' activity. The problem is that it the debug output file gets the wrong name (unreadable characters). I can't figure out where my pointers go...
  24. Replies
    1
    Views
    916

    Use CreateProcess to start WaveRecorder and...

    Use CreateProcess to start WaveRecorder and control it through a pipe.
  25. Replies
    1
    Views
    11,397

    Simple BackPropagation Algorithm

    I've read some neural net tutorials and decided to build a simple app: create simple perceptrons capable to recognize 2D black&white block representations of digits.
    My problem comes with the...
Results 1 to 25 of 48
Page 1 of 2 1 2