View Single Post
Join Date: Nov 2008
Posts: 249
Reputation: Antenka has a spectacular aura about Antenka has a spectacular aura about Antenka has a spectacular aura about 
Solved Threads: 65
Antenka's Avatar
Antenka Antenka is offline Offline
Posting Whiz in Training

Re: SortedList & List Program

 
0
  #2
Nov 21st, 2008
Hello, deven1974
Lets start:
1. Illegal use of data and datatypes:
  1. public void remove(E data) {
  2. E.data = null;
  3. if (head != null)
  4. temp = head.data;
  5. head = head.next;
  6. return temp;
  7. }
It is equal, if you write this
  1. String s;
  2. String.s = null;
2. You didn't declare variable temp, but use it.
3. Why are you setting your just entered parameter no null and the working with it?
Last edited by cscgal; Nov 21st, 2008 at 8:36 pm. Reason: Fixed code tag
So what if you can see the darkest side of me?
No one would ever change this animal I have become
Help me believe it's not the real me
Somebody help me tame this animal
Reply With Quote