CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Backslash

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Thread: linked lists

    by Backslash
    Replies
    11
    Views
    1,178

    Re: linked lists

    Am I even on the right track or way off?
  2. Thread: linked lists

    by Backslash
    Replies
    11
    Views
    1,178

    Re: linked lists

    I've tried it but I don't know if it's correct. Here's what I did:


    class Node
    {
    int data;
    Node next;
    }
    class LinkedList
    {
  3. Thread: linked lists

    by Backslash
    Replies
    11
    Views
    1,178

    Re: linked lists

    I'm saying you guys have more knowledge in Java than me because I am learning the language and I just wanted some help.
  4. Thread: linked lists

    by Backslash
    Replies
    11
    Views
    1,178

    Re: linked lists

    ADD DATA TO THE END OF A LINKED LIST using the classes and function declarations given.

    I thought it would to be a simple task for you guys.
  5. Thread: linked lists

    by Backslash
    Replies
    11
    Views
    1,178

    Re: linked lists

    "Give the code to add data to the end of a linked list using the above classes and function declaration as given. Make sure you take care of the special case of an empty list."

    That's the question...
  6. Re: Running java programs from the command prompt

    well it depends what your program is trying to do with that text file.
    post your code up
  7. Thread: linked lists

    by Backslash
    Replies
    11
    Views
    1,178

    linked lists

    Give the code to add data to the end of a linked list using the above classes and function declaration as given. Make sure you take care of the special case of an empty list.



    class Node{
    ...
  8. [RESOLVED] using an anonymous inner class

    how do i use an anonymous inner class with this code:


    class MyFrame extends JFrame{
    MyListener listener = new MyListener();
    public MyFrame(){
    addWindowListener(listener);
    }
    }
  9. Replies
    5
    Views
    10,387

    Re: PMD & FindBugs Error correcting

    Okay I corrected most of the errors just left a few out but thanks everyone!
  10. Replies
    5
    Views
    10,387

    [RESOLVED] PMD & FindBugs Error correcting

    I'm just finishing up my program and I need to correct these bad practice warnings, wtc
    I've done of most of them but these are the ones I cant figure out. can someone please help me.
    Here are my...
  11. Replies
    0
    Views
    514

    [RESOLVED] JUnit Tests

    For my program I have to run a JUnit tests and I don't quite pass all the tests.
    Here are the errors:
    initializationError
    - no runnable methods
    - java.lang.Exception
    - at...
  12. Replies
    6
    Views
    1,854

    Re: Java Program Copy Files

    Thank You!
  13. Replies
    6
    Views
    1,854

    Re: Java Program Copy Files

    i asked for help with not an opinion...
  14. Replies
    6
    Views
    1,854

    Re: Java Program Copy Files

    I need help on how to generate SHA1 hash code and rename it from the copied file names.
    I also need help on how to paste these filenames that I copied into a txt file with their SHA1 hash code. (in...
  15. Replies
    6
    Views
    1,854

    [RESOLVED] Java Program Copy Files

    I need to create a program that copies files from a directory to another directory. Then the copied files in the destination directory are to be renamed to their SHA1 hash code. Also, at the same...
  16. Re: Copying files with InputStream/OutputStream instead of Reader/Writer

    Okay I will next time =P

    How about in my Main class? I used BufferedReader/Writer. I was told not to use Reader/Writer because some tests will fail.
  17. Replies
    8
    Views
    1,676

    Re: SHA1 Hash

    Thanks =P
    btw is that a script? its cool
  18. [RESOLVED] Copying files with InputStream/OutputStream instead of Reader/Writer

    My code is currently copying files using Reader/Writer but I need to do so using Input/Output Stream. How do I change my code to do that?
  19. Replies
    2
    Views
    845

    Re: tree traversals

    Okay so did I do the first two correct?
  20. Replies
    8
    Views
    1,676

    Re: SHA1 Hash

    Okay my question is:
    How do convert a string into its SHA1 hash code?
  21. Re: International company seeks home based data entry typists

    is this a scam?
  22. Replies
    4
    Views
    672

    Re: Check code please?

    You can just download and set up JDK and compile with the command prompt.
  23. Replies
    1
    Views
    5,152

    [RESOLVED] BFS & DFS Algorithm

    I attached the original graph below and my highlighted BFS version. I wanted to see if my order is correct. Also I have to do a DFS algorithm but I don't know how. Can someone tell me what's it all...
  24. Replies
    2
    Views
    845

    [RESOLVED] tree traversals

    I have to list to the vertices according to a preorder traversal, an inorder traversal, and a postorder traversal.

    Here's what I have so far:

    preorder: 0,1,3,6,7,9,10,2,4,5,8,11

    inorder:...
  25. Replies
    8
    Views
    1,676

    Re: SHA1 Hash

    Sorry, I didn't mention what I was looking for but right now my program runs as copying a text file to another text file. What I need to do is list the copied files into a manifest.txt and their file...
Results 1 to 25 of 26
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured