Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to make a class where I put a key and value into the put method which puts the key in the k string array and value into the v string array, however it is not being saved in the array when I do get or display.
For example: put(dan,30) get(dan) returns null
display returns null null 10 times. Does anyone know what's wrong?

public class Memory 
       {
       final int INITIAL_CAPACITY = 10;
       String[] k = new String[INITIAL_CAPACITY];
       String[] v = new String[INITIAL_CAPACITY];
       int count = 0;

       public Memory()
       {
          count = 0;
       }
       public int size()
       {
          return count;
       }
       public void put(String key, String value)
       {
            int a = 0;
            boolean found = false;
            for (int i = 0; i < k.length; i++)
            {
                //System.out.println("key is " + key.equals(k[i]));
                if (key.equalsIgnoreCase(k[i]))
                {
                    v[i] = value;
                    found = true;
                }
                if (found)
                    break;
                a++;
            }
            //System.out.println(a == k.length);
            if (a == k.length);
            {
              k[count] = key;
              v[count] = value;
            //System.out.println(k[count] + " " + v[count]);
              count++;          
            //System.out.println(count);
            }

       }
       public String get(String key)
       {
          String output = "a";
          for(int i = 0; i < k.length; i++)
          {
             if(!key.equalsIgnoreCase(k[i]))
             {
                output = null;
             }
             else
             {   
                output = v[i]; 
                return output;
             }  
          }
          return output;
       }
       public void clear()
       {
            for (int i = 0; i < k.length; i++)
            {
                k[i] = null;
                v[i] = null;
            }
          count = 0;
       }

        public void display()
        {
            for (int i = 0; i < k.length; i++)
            {
                System.out.println(k[i] + " " + v[i]);
            }
        }
    }
share|improve this question
Have you tried stepping through your code to see where it goes wrong? – David Apr 9 '10 at 23:05
The put method does not work because nothing is being saved in the array and count is not incrementing – Raptrex Apr 9 '10 at 23:11
What's the code you're using to invoke the mehtods? – willvv Apr 9 '10 at 23:13
try removing the a variable and changing the if condition to if (!found) in the put method. – willvv Apr 9 '10 at 23:17
heres my driver: pastie.org/912326 – Raptrex Apr 9 '10 at 23:18
show 2 more comments

3 Answers

up vote 0 down vote accepted

Your code worked for me.

Just ran:

public static void main(String args[]){
        Memory newMem = new Memory();
        newMem.put("Dan", "30");
        System.out.println(newMem.get("Dan"));
    }

And the output was "30"

What does your code look like for creating/putting/getting?

share|improve this answer
I'm having the user type in put dan 30 or get dan into the command line pastie.org/912326 – Raptrex Apr 9 '10 at 23:16
I figured it out, I created the object inside a while loop which doesnt work. – Raptrex Apr 9 '10 at 23:21

if (a == k.length);

remove the semicolon or else it always runs the block below

And I hope this is just as a study, because you should just use Map and not implement one yourself. Also your algorithm is very poor. It is O(n) performance for both put and get. You can actually do better like O(log n)

share|improve this answer
The for loop in put method checks if key is already in the array, and if it is, it will change the value – Raptrex Apr 9 '10 at 23:15
1  
you don't understand. the line if (a == k.length); can be removed and your code will do exactly the same thing. its an error because if you put and match on an existing key you'll also add that to the end of the array and increment count. then you'll have two keys with the same value. – Pyrolistical Apr 9 '10 at 23:20
On the same line maybe remove the 'found' variable and just break out of the loop if the key is already in the array – pgmura Apr 9 '10 at 23:24
while(true)
{
    Scanner kb = new Scanner(System.in);
    Memory m = new Memory();
...

Every time you loop, you are creating a new Memory object instead of updating a reference to an existing one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.