Search:

Type: Posts; User: Kurisu

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,086

    Labels make me uneasy in higher level programming...

    Labels make me uneasy in higher level programming languages as they are rarely encountered; atleast in my experience.

    I'd probably go with the first one just because.. uh.. i dunno... I wonder if...
  2. Replies
    4
    Views
    1,618

    yep as Dante Shamest noted cout

    yep as Dante Shamest noted
    cout << tc; won't work because the program doesn't know what to output. Its like trying to:
    tc + tc they compiler will have no idea what you are trying to add. You...
  3. Replies
    4
    Views
    2,382

    Ah, sounds kinda sweet. I've got a bad...

    Ah, sounds kinda sweet.



    I've got a bad habit of creating my own linked structures for my personalized situation instead of using the provided one since I was forced in school to write my own...
  4. Replies
    4
    Views
    2,382

    Quickie Linked List Deallocation question.

    Okie, just started using C# a few days ago and it seems relatively easy although I wanted to get one thing clarified so I don't run into problems down the road.

    A linked list in C# unlike C++ or C...
  5. guess you could: 1) Take the input as a...

    guess you could:

    1) Take the input as a character string instead of a number.
    2) Parse the character string.
    3) Convert string to an int before storing in the array.
  6. Replies
    3
    Views
    890

    std::cout

    std::cout << "hello";

    or specify a namespace.

    By the way create a console app. I've never used builder, but it seems like that pre-existing code is for a windows app using a drag'n'drop...
  7. Replies
    13
    Views
    1,748

    I'm sure some kind of sleep function of sorts is...

    I'm sure some kind of sleep function of sorts is probably provided for use with Milliseconds as the parameter I bet.. though I'm too lazy to look it up to verify.

    Pointless side note: Maybe its...
  8. Replies
    2
    Views
    1,377

    Would The Comma Separated Value (CSV) File...

    Would The Comma Separated Value (CSV) File Format work for you? I'm sure Excel would accept that and give you some control of how data is displayed within Excel. Although I'm just guessing so maybe...
  9. Replies
    8
    Views
    1,697

    ouch! no offense, but you seem to be waaaaaaaay...

    ouch! no offense, but you seem to be waaaaaaaay over your head from atleast my understanding of what your trying to do compared to how much you know right now. Your more likely to get hit by a stray...
  10. Replies
    11
    Views
    2,074

    One neede for Unix the other needed for Windows? ...

    One neede for Unix the other needed for Windows? Eh, maybe I wrong.
  11. Thread: algorithms

    by Kurisu
    Replies
    7
    Views
    1,809

    a website? not off the top of my head... If you...

    a website? not off the top of my head... If you willing to pay a smidge the following book has some nice algorithms:

    AI for Game Developers

    Publisher : O'Reilly
    Pub Date : July 2004
    ISBN :...
  12. Replies
    4
    Views
    1,236

    Me thinks there is one already implemented in the...

    Me thinks there is one already implemented in the STL.

    Check out QUEUE class here

    Of course you could always implement your own queue if you know how to program a linked list.
  13. Replies
    20
    Views
    4,765

    Example

    If your still looking for a simple example here is something that should compile.

    1) Inserts 3 items into a linked list.
    2) Displays all items to standard output.
    3) Destroys linked list...
  14. Replies
    20
    Views
    4,765

    Well often for a more comprehensive linked list...

    Well often for a more comprehensive linked list atleast one class and one struct would be created so that using the linked list would be easier to use such as creation, destruction (important because...
  15. Replies
    53
    Views
    22,764

    I wrote a program that outputted "YOU SUCK"...

    I wrote a program that outputted "YOU SUCK" infinitely on a school computer and left it there.
  16. Replies
    20
    Views
    4,765

    Basic linked list. struct node { int...

    Basic linked list.



    struct node
    {
    int value;
    node *next;
    }
  17. Thread: Help with HW

    by Kurisu
    Replies
    7
    Views
    1,382

    As someone else mentioned your function prototype...

    As someone else mentioned your function prototype is defined in the wrong location. It should be declared like your CONST variables; that is at the beginning of the file and not inside the main...
  18. Replies
    3
    Views
    1,714

    I just downloaded it last week and besides the...

    I just downloaded it last week and besides the problem of download size 400+MB + Service Pack 2 (75MB) with my non-highspeed connection I'm pleased with the end result. Finally have a replacement for...
  19. Replies
    4
    Views
    967

    Ouch dude, that is kinda harsh :(...

    Ouch dude, that is kinda harsh :(
    -----------------------------
    As for the question you can just use a loop structure to initialize your values.



    TableType total[30];

    for(int index = 0;...
  20. Replies
    5
    Views
    1,402

    Here yah go.

    Okay seeing as how you are new I'll give you one free pass, but for future reference don't ask someone to write an entire program for you.. the purpose of homework is for you to do it yourself..
    ...
  21. Replies
    9
    Views
    2,579

    yep, but I have a feeling he won't know what...

    yep, but I have a feeling he won't know what either are :P
  22. Replies
    9
    Views
    2,579

    //Room.h class Room { private: string...

    //Room.h

    class Room
    {

    private:

    string description;
    string exits;
    string objects;
  23. Thread: I beg of thee

    by Kurisu
    Replies
    2
    Views
    1,028

    i would, but alas no 64-bit environment here.....

    i would, but alas no 64-bit environment here.. good luck though
  24. Thread: i need help

    by Kurisu
    Replies
    7
    Views
    1,470

    what an odd fellow... .. .. .. .. . . . . . . . ....

    what an odd fellow... .. .. .. .. . . . . . . . . . . . . . . . . . . . . . . .
  25. Replies
    2
    Views
    1,012

    does something like below doesn't work for yah? ...

    does something like below doesn't work for yah? (i can't 100% remember how to pass in arrays off the top of my head.. quite sad really.. for some reason my brain thinks the following will work)

    ...
Results 1 to 25 of 65
Page 1 of 3 1 2 3