Search:

Type: Posts; User: Koren3

Page 1 of 2 1 2

Search: Search took 0.11 seconds.

  1. Thread: Game 3x3

    by Koren3
    Replies
    1
    Views
    2,335

    Game 3x3

    Hallo, I am doing GamingTable size 3x3(look at the picture)http://img704.imageshack.us/img704/5199/gamingtabled.jpg. And i need generate some solution but i donīt know how can i do this. Target is...
  2. Replies
    9
    Views
    7,197

    Re: Binary Search Tree

    Ok I solved it. Now i am trying do method remove.
  3. Replies
    9
    Views
    7,197

    Re: Binary Search Tree

    I changed it:


    public class BinarySearchTree {
    private Node root;
    private Node parent;
    private Node node;


    public boolean isEmpty()
  4. Replies
    9
    Views
    7,197

    Re: Binary Search Tree

    I changed it but nothing...
    Did you mean this?


    public class BinarySearchTree {
    private Node root;
    private Node parent;
    private Node node;
  5. Replies
    9
    Views
    7,197

    Re: Binary Search Tree

    Ohh yes. Thank you.
    I wrote this code:


    public boolean isEmpty()
    {
    return root==null ;
    }

    private Node insertData(Node node, int data)
  6. Replies
    9
    Views
    7,197

    Re: Binary Search Tree

    Thank you but Donīt it do another way? Because I got UML diagram with methods and method insert look like insert (int).
    UML diagram on picture: Imageshack - treeu
  7. Replies
    9
    Views
    7,197

    Binary Search Tree

    Hello, I have to do Binary Search Tree. I found on internet a lot of versions, but i need it just simple. First time, I need help with method insert.
    My code:


    public class BinarySearchTree {
    ...
  8. Replies
    10
    Views
    3,373

    Re: Simple linked list

    Thank you!
  9. Replies
    10
    Views
    3,373

    Re: Simple linked list

    Thank you so much. I will try do it. But do you have idea how can i do these three methods<
    act = actual...


    public void setActNext()
    {

    }

    public void...
  10. Replies
    10
    Views
    3,373

    Re: Simple linked list

    Oh thnak you very much anf how can i do this method:
    public void addAfterAct(int i)
    {

    }
  11. Replies
    10
    Views
    3,373

    Re: Simple linked list

    I need know how can i do empty methods...
  12. Replies
    10
    Views
    3,373

    Simple linked list

    Hello I do Singly-Linked Lists. But i have probelm. I canīt do some methods (empty methods in my code). How can i do it?
    Thank you.
    My code:
    Main class:


    public class Main {

    /**
    ...
  13. Replies
    4
    Views
    4,381

    Re: TCP chat cipher

    I know, where was a problem. I used block cipher. But I use stream cipher and it write this error: java.security.InvalidKeyException: no IV set when one expected. If i use stream cipher i don't need...
  14. Replies
    4
    Views
    4,381

    Re: TCP chat cipher

    I donīt know what is problem...
  15. Replies
    4
    Views
    4,381

    Re: TCP chat cipher

    No error, but another client doesnīt recive message.
  16. Replies
    4
    Views
    4,381

    TCP chat attaching cipher is not running

    Hi,
    I did TCP chat no problem and I attached cipher and It no run. What is wrong on my code.


    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.IOException;...
  17. Getting "javax.net.ssl.SSLException" while writing SSL socket program

    Hello, I am a begginer in programimg and I programmed the chat with SSL sockets. I created the certificate via tutorial on this website: Installing and Configuring SSL Support . I use IDE NetBeans...
  18. [SOLVED] Error in recieving message from client in TCP multiclient chat program

    Hallo,
    I did multiclient chat, but some is wrong, becouse when i run this program, First client send message and server this message recive to another client it is right but second message is lost....
  19. [SOLVED] Interesting error cipher while sending message

    Hallo,
    I did UDP chat with encryption. Fisrt "client" send and encryption message a and second "client" recive message and decription. But no ever. I donīt know, Sometime It send 12 messages and...
  20. [SOLVED] Getting error "javax.crypto.BadPaddingException" in AES crypt for UDP chat

    Hallo,
    I did AES crypt for my UDP chat, but it write this error: javax.crypto.BadPaddingException: Given final block not properly padded. On line with:
    byte dekodovani[]=cipher.doFinal(encrypt);...
  21. Replies
    6
    Views
    4,507

    Re: SSL Chat

    I know P2P. I need this program that This program can be use for more people you know. Every one who will have this program can communicate but always Peer to Peer. Do you understand me?
  22. Replies
    6
    Views
    4,507

    Re: SSL Chat

    I hope that This program conect to another same program and it will work like chat. Maybe my code is whole wrong I donīt know. How can i do more simply but both of "programs" must be same. No client...
  23. Replies
    6
    Views
    4,507

    Re: SSL Chat

    Thanks Chris. I already did this program. But i am not sure if it is right. Befero I did SocketDatagram it is new stuff for me. Could you look on my code? Thank you.



    import...
  24. Replies
    6
    Views
    4,507

    SSL Chat implementation

    Hi,
    I would like to program SSL Chat. I have not experence with this stuff. OK I have one question. Is possibility do it that way first thread should be work like Server (SSLServerSockte) this...
  25. [SOLVED] Re: DatagramPacket CRC

    Yes thanks a lot!!!
Results 1 to 25 of 48
Page 1 of 2 1 2