Search:

Type: Posts; User: Soulzityr

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    3,063

    hmm it wouldnt be too bad of an...

    hmm it wouldnt be too bad of an idea...considering i have no idea what youre talking about :P

    whats an Rot13 cipher program :D
  2. Replies
    2
    Views
    3,063

    Ideas for a Personal Fun Project

    Hey, I have about half a year's experience in programming and can do stacks/queues/linked lists and recently just finished a connect 4 min-max AI project, and now I'm just looking for a few ideas to...
  3. Replies
    9
    Views
    2,354

    hmm ahh yes your logic makes a lot of sense now!!...

    hmm ahh yes your logic makes a lot of sense now!! :) haha thnaks, i will see if i can duplicate it :D
  4. Replies
    9
    Views
    2,354

    hmm yes, i see, but i cant see a way to phrase...

    hmm yes, i see, but i cant see a way to phrase it...T_T ahhh lolol Q_Q hmm...

    i think i can do something like this...ughhh lol :P i mean, does it matter, since it works? :D
  5. Replies
    9
    Views
    2,354

    hmm, yes, we dont check upwards but i think we...

    hmm, yes, we dont check upwards but i think we may have for the bottom two corners. That will be deleted if I find it there, but yes we don't check upwards in the middle, etc.

    And yes, this is...
  6. Replies
    9
    Views
    2,354

    hmm, im not quite sure what left and right does...

    hmm, im not quite sure what left and right does in your program

    and ohhh umm, hmm, let me try to explain better. If it blocks/adds to a diaganol, column, or row it adds in a different number.
    ...
  7. Replies
    8
    Views
    3,430

    My college math classes forces the use of a...

    My college math classes forces the use of a regular TI-30XA calculator, which can't graph at all. I'm surprised you're allowed a graphing calculator >.<
  8. Replies
    3
    Views
    6,855

    Hey! It's done!! If I want people to play against...

    Hey! It's done!! If I want people to play against it online, what should I do?
  9. Replies
    9
    Views
    2,354

    How to Make This code more efficient

    Hello, I'm working on a Connect 4 evaluation function, and this is the only code we have left. This code WORKS just fine, however, I am wondering if there is a more efficient way to write this code....
  10. Replies
    3
    Views
    6,855

    Heh thanks for your help. As for my Connect 4,...

    Heh thanks for your help. As for my Connect 4, I've made everything work in the board. Now I just need to develop the AI intelligence!! ^_^
  11. Replies
    6
    Views
    1,169

    Make sure you try to follow it on your own...

    Make sure you try to follow it on your own without the guided instructions so you can figure out similar problems later.
  12. Replies
    6
    Views
    1,169

    The first two times it's called the first if loop...

    The first two times it's called the first if loop is triggered. The next 2 times it's called, the second loop is triggered and the same thing is being done to b that was done to a. The final time...
  13. Replies
    3
    Views
    6,855

    C Language: Connect 4 AI-Min/Max Trees

    Hello, I'm working on a project c4.c which will develop a min-max based AI. This is for a class. Our AI will compete with other groups in our class on a common interface. We've already developed our...
  14. Replies
    9
    Views
    2,965

    okay, sorry i used the word method. i meant...

    okay, sorry i used the word method. i meant function, and it does not return -1 and 1 all the time
  15. Replies
    9
    Views
    2,965

    The method is as follows: strcmp(char...

    The method is as follows:




    strcmp(char String[], char String2[]);



    it returns -1 if first is before, 1 if second is before, 0 if equal
  16. Replies
    3
    Views
    7,379

    but it has to do with C compiler? haha that was...

    but it has to do with C compiler? haha that was my logic :P
  17. Replies
    3
    Views
    7,379

    Getting C Compiler for NetBeans

    Hey I recently changed to using Netbeans because I will be learning how to program in many languages.

    So far, I managed to put Ruby and Java onto Netbeans. However, I want to put C/C++ into...
  18. Replies
    4
    Views
    1,018

    to malloc, you should do schedule= malloc...

    to malloc, you should do



    schedule= malloc (sizeof(struct taskList));


    also, your struct should have an array of chars (this makes strings) instead of just a single char, which would be one...
  19. Replies
    15
    Views
    4,713

    Yes, mergeSort is supposed to sort according to...

    Yes, mergeSort is supposed to sort according to total days for each person, I believe.

    The way I calculated it was different. I turned each month into a number, January==1, February==2, etc. etc....
  20. Replies
    15
    Views
    4,713

    Hey dude, did you see my topic on this board? You...

    Hey dude, did you see my topic on this board? You and I have the exact same assignment. Is it possible we have the same teacher/class/university? lol
  21. Thread: my mergeSort

    by Soulzityr
    Replies
    41
    Views
    5,744

    while((count!

    while((count!<mid) && (count2<high))


    Thank you!! It works perfectly now :) :) Lol I feel bad for having trouble over a simple mergeSort problem, but thanks for all your and others' help in my...
  22. Thread: my mergeSort

    by Soulzityr
    Replies
    41
    Views
    5,744

    omg thank you so much :) :) !!! that is great :D...

    omg thank you so much :) :) !!! that is great :D it works just fine now!! the sorting order is still messed up though...lol but i feel so bad having problem after problem. idk, im trying to learn...
  23. Replies
    5
    Views
    1,002

    you could still apply the same concept without...

    you could still apply the same concept without arrays. like



    scanf("%c",variable);
    if(variable>'9' || variable< '0') {
    i--'
    }
  24. Thread: my mergeSort

    by Soulzityr
    Replies
    41
    Views
    5,744

    For iMalc, thanks for the help :) Unfortunately...

    For iMalc, thanks for the help :) Unfortunately the program still crashes. I put "!" and "?" prints in my mergesort and basically the reason my program is crashing is because it never stops on...
  25. Thread: my mergeSort

    by Soulzityr
    Replies
    41
    Views
    5,744

    Sorry guys that I have been pro-longed in this...

    Sorry guys that I have been pro-longed in this assignment. I am currently working on two, one is a group project involving making an AI for Connect 4 so I have been trying to balance my attention...
Results 1 to 25 of 106
Page 1 of 5 1 2 3 4