Search:

Type: Posts; User: Stunner

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Thread: C# Workshop

    by Stunner
    Replies
    0
    Views
    2,839

    C# Workshop

    There currently is an ongoing C# workshop that is taking place at:

    http://www.gamedev.net/community/forums/default.asp?pid=84

    They are only 2 - 3 weeks into the workshop. The program and text...
  2. Replies
    21
    Views
    2,330

    Haha, true, thanks for mentioning that. Long day,...

    Haha, true, thanks for mentioning that. Long day, not planning on working on it anymore for now. Thanks for all the help.
  3. Replies
    21
    Views
    2,330

    HAH! That WAS the problem! I'm so dumb, when I...

    HAH! That WAS the problem! I'm so dumb, when I converted it, I did it wrong which caused the problems... sorry guys. Matsp, good call n the n++ counter fixed a problem and now it runs like its...
  4. Replies
    21
    Views
    2,330

    I think that if else statement is the problem,...

    I think that if else statement is the problem, working on it...
  5. Replies
    21
    Views
    2,330

    Matsp, I took both of your suggestions and the...

    Matsp, I took both of your suggestions and the first one made it respond nearly exactly the same as Swoopy's version. The second part however made it crash worse than originally.
    n should be...
  6. Replies
    21
    Views
    2,330

    Nice man, that makes my code work better, but now...

    Nice man, that makes my code work better, but now I get garbage on the end. It is able to print out only one node and then garbage on the end. If I insert more than one entry I get a fatal error....
  7. Replies
    21
    Views
    2,330

    Swoopy I did as you said: ...

    Swoopy I did as you said:



    /******************************************/
    //Initializes PQ

    node* tempArray(node* head, node* temp, char string[], char part[], int flag, int stringFlag)
    {...
  8. Replies
    21
    Views
    2,330

    Don't worry I am going to stick to my way for...

    Don't worry I am going to stick to my way for now, it is good enough for my program's needs. Yeah, I am writing this all out for practice and to get a better knowledge of how all this good stuff...
  9. Replies
    21
    Views
    2,330

    Here is an update of my code: #include...

    Here is an update of my code:



    #include <iostream>

    using namespace std;

    struct node
    {
  10. Replies
    21
    Views
    2,330

    Wow dude, thanks for pointing that out. I didn't...

    Wow dude, thanks for pointing that out. I didn't notice that temp resets, that is part of the problem for sure. I set head to h because I was initially designing the function by looking off of...
  11. Replies
    21
    Views
    2,330

    Haha, yeah I just wanted to initialize the string...

    Haha, yeah I just wanted to initialize the string to something at first, not necessarily NULL. I modified the code a bit in order to see if it would get fixed, I should have left it like this:


    ...
  12. Replies
    21
    Views
    2,330

    Problem Creating Linked List in Function

    Hey guys, I am currently trying to get my program to implement a linked list by invoking a function, but garbage is always thrown out whenever I execute it. Here is a link describing more of my...
  13. Replies
    16
    Views
    16,937

    I got the equations to get inserted into the...

    I got the equations to get inserted into the linked list. Now I will work on making the code easier to read. I was initially thinking of making the doubly linked list because input members in the...
  14. Replies
    16
    Views
    16,937

    Nevermind, figured out the problem.

    Nevermind, figured out the problem.
  15. Replies
    16
    Views
    16,937

    I find that whenever my linked list prints, it is...

    I find that whenever my linked list prints, it is a stack, which I do not want. But since I have to design the linked lists myself I was thinking about making a doubly linked list that would be made...
  16. Replies
    16
    Views
    16,937

    Hey anon, thanks for the replies. I think the...

    Hey anon, thanks for the replies. I think the table is fine because this isn't supposed to handle very large numbers in any case. I used floats instead of ints because I didn't want the compiler to...
  17. Replies
    16
    Views
    16,937

    Ey man, thanks for all the input and advice, I...

    Ey man, thanks for all the input and advice, I really really appreciate it, but you guys are really pro at this and are telling me to do more advanced things which I havn't learned. I would just like...
  18. Replies
    16
    Views
    16,937

    Aye, thanks. Hold only has 5 because I was...

    Aye, thanks. Hold only has 5 because I was planning on only allowing up to 5 digits for my calculator.

    Edit: Forgot to make the arrays have 6 slots.
  19. Replies
    16
    Views
    16,937

    I have already written code to convert a char...

    I have already written code to convert a char array into an actual value(took me some time and it is working well). Here is the code:



    #include <iostream>
    #include <string>

    using namespace...
  20. Replies
    16
    Views
    16,937

    Thanks a lot for the replies, I'll update you all...

    Thanks a lot for the replies, I'll update you all when I try implementing it in my code, thanks.
  21. Replies
    16
    Views
    16,937

    Setting String equal to char array?

    Is there any way of putting a string of characters into a character array? I am trying to read in input as chars, but I want the spaces to be read as well, and so far the only way I could get this to...
  22. Replies
    6
    Views
    2,311

    Thanks for the responses. Yeah but the assignment...

    Thanks for the responses. Yeah but the assignment doesn't require me to free the dynamically allocated memory. I totally understand that it is the way to go though, thanks again for all the replies....
  23. Replies
    6
    Views
    2,311

    Problem With Inserting into Linked List

    Hi I am merely trying to insert several nodes into a predefined linked list and the second call to the insert function always messes up for some odd reason. I try to find the error by debugging but...
  24. Replies
    9
    Views
    1,396

    Nice man! Thanks dude! That helps.... finally I...

    Nice man! Thanks dude! That helps.... finally I can go on from here hahah.
  25. Replies
    9
    Views
    1,396

    What do you mean by this? Also, I am confused as...

    What do you mean by this? Also, I am confused as to why there would be a 7 element bug, since the loops should stop when there are no more names to read; also I fixed the 7 element counter that you...
Results 1 to 25 of 30
Page 1 of 2 1 2