![]() |
|
#51
|
|||
|
5 wiz 1 OOR bard cooks 4 SK. <Friends> be up on dat
| ||
|
|
|||
|
#52
|
|||
|
thanks for the concern 12:8
| ||
|
|
|||
|
#53
|
|||
|
Code:
//naw naw
//15 Feb 2015
//IntNode.java
import java.util.*;
public class IntNode{
//instance variables
private IntNode link;
private int value;
//---Constructors---
IntNode(){
link = null;
value = 0;
}//end default constructor
IntNode(int d, IntNode n){
link = n;
value = d;
}//end constuctor
//---getters---
public IntNode getLink(){
return link;
}//end getLink
public int getValue(){
return value;
}//end getValue
//---setters---
public void setLink(IntNode n){
link = n;
}//end setLink
public void setValue(int d){
value = d;
}//end setValue
public String toString(){
String str = "";
for(IntNode cursor = this; cursor != null; cursor = cursor.link)
str += cursor.value + " ";
return str;
}//end toString method
public static int listLength(IntNode head){
int answer = 0;
for(IntNode cursor = head; cursor != null; cursor = cursor.link)
answer++;
return answer;
}//end listLength
public static void main(String args[]){
IntNode node6 = new IntNode(6, null);
IntNode node5 = new IntNode(5, node6);
IntNode node4 = new IntNode(4, node5);
IntNode node3 = new IntNode(3, node4);
IntNode node2 = new IntNode(2, node3);
IntNode node1 = new IntNode(1, node2);
System.out.println(node1);
System.out.println(listLength(node1));
}//end main
}//end class IntNode
__________________
Current Games:
Naw | ||
|
|
|||
|
#54
|
|||
|
welp my guild leader killed yours
hehe for someone who talks as much shit as colgate surely a sleepers tomb/notv/primal monk shouldn't die to a kunark geared SK right?
__________________
![]() | ||
|
|
|||
|
#55
|
||||
|
Quote:
*glances back at Beastagor's 1v1 Salaryman corpse* *Lindberg Office Space* "Ahhhhhhyeahhhh..." *Backs away slowly* | |||
|
|
||||
|
#56
|
||||
|
Quote:
__________________
Current Games:
Naw | |||
|
|
||||
|
#57
|
|||
|
[You must be logged in to view images. Log in or Register.][You must be logged in to view images. Log in or Register.][You must be logged in to view images. Log in or Register.][You must be logged in to view images. Log in or Register.][You must be logged in to view images. Log in or Register.][You must be logged in to view images. Log in or Register.][You must be logged in to view images. Log in or Register.][You must be logged in to view images. Log in or Register.][You must be logged in to view images. Log in or Register.][You must be logged in to view images. Log in or Register.]
__________________
Current Games:
Naw | ||
|
|
|||
|
#58
|
|||
|
have no idea who azzarthegod but I can't imagine he has a KDR much better then 12:8's, and probably no where close to my 102:1
WELP 3 AM hope i can finally unplug | ||
|
|
|||
![]() |
|
|