Recent content by getoffb

  1. G

    Wrapper Classes in Java for String

    The only explicit reason I have for making them public is because that is what the assignment specified. I always thought you would use getter/setter methods like you said, but for whatever reason, we were not supposed/allowed to for this assignment. Thanks for the help.
  2. G

    Wrapper Classes in Java for String

    Nevermind, I think I figured it out by doing this: key.key = inStrOne; value.value = inStrTwo; If anyone has a better way of doing this, I'm all ears.
  3. G

    Wrapper Classes in Java for String

    What is the proper way of storing a String in a wrapper class for a String. For example, I have the following two classes which are only wrapper classes for a string value: public class ValueClass { //holds the address public String value; } public class KeyClass {...
  4. G

    Pointer to Previous Element visited in a BST

    public void inOrder(Node n) { //nodes used as pointers Node current = n; Node previous = null; //arraylist to store nodes in ArrayList collector = new ArrayList(); //counts number of groups found int groupNum = 0...
  5. G

    Pointer to Previous Element visited in a BST

    How can I keep a pointer to the current and previous element visited during an inorder traversal of a Binary Search Tree? I have the BST created with all elements inserted correctly. What I want to do is an inorder traversal of the tree and where the current element being visited is the same...
  6. G

    Learning C after Java

    Throughout the past couple of semesters/years, for good or bad, all of my course work has been in Java. I want to start learning something new in my (limited) free time. Are there any particular books that anyone would recommend for someone new to C? I prefer hard copy books, but any good online...
  7. G

    Cell processor ALU(s)

    Does the Cell Processor's SPU/SPE have an integer-based ALU? I know that Google should turn up an answer rather quickly, but I've been searching for the better part of 5 hours and haven't found anything helpful yet. I read that the floating-point based ALU is capable of 25.6 GFLOPS but...
  8. G

    Good email hosting provider for small business?

    Have you looked into google's hosted email service? It's still a closed beta right now, but at least worth a look. https://www.google.com/hosted
  9. G

    Problems w/ Large File transfers on 2k3 & XP

    I am having some problems when trying to transfer some largish (~1gb) files from XP desktops to our 2k3 server. Is there something that needs to be turned on or modified on the 2k3 machine to allow large transfers to it? Whenever we try and drag and drop from the XP machine to a shared folder...
  10. G

    Best Setup for SBS2k3 and Wireless?

    Thanks for the information. I was most concerned about the tivo and ae being able to conect to the internet throught the server, but since they should work without a problem, that eases a lot of concerns. Also, one other setup question. I currently have a P4 2.4c with a gig of RAM and a 40gb...
  11. G

    Best Setup for SBS2k3 and Wireless?

    I am planning on adding a server running SBS2k3 to our network. Currently, we have a Linksys wrt54g wireless router that 3 laptops connect to wirelessly, 2 desktops are connected through cat5, and then we have an Airport Express that we stream music too, a Tivo that connects wirelessly and also...
  12. G

    Can't Install XP After Installing Fedora

    Sorry for not clarifying in the first post, but I am not trying to dual boot. I only want to have XP installed.
  13. G

    Can't Install XP After Installing Fedora

    I have had Fedora on my old Dell laptop for a couple months now. Other day, for various reasons, I needed to reinstall XP on it. But when I booted up with the XP disc in, nothing happens after it says Setup is inspecting your hardware configuration. Anyone have any clues as to what I can try...
  14. G

    to server or not to server

    Does anyone have a couple good resources for Server 2003 or more specifically, SBS? Books, magazines, websites, forums, anything really. Thanks!