Project 1999

Go Back   Project 1999 > Red Community > Red Rants and Flames

Closed Thread
 
Thread Tools Display Modes
  #1  
Old 10-16-2015, 12:09 PM
Chronoburn Chronoburn is offline
Fire Giant


Join Date: Jun 2011
Location: Minneapolis
Posts: 547
Default

LinkedList<Integer> list = new LinkedList<Integer>();

Quote:
Originally Posted by SamwiseRed [You must be logged in to view images. Log in or Register.]
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
  #2  
Old 10-15-2015, 05:09 PM
Ragnaros Ragnaros is offline
Planar Protector

Ragnaros's Avatar

Join Date: Dec 2014
Location: Cambridge, United Kingdom
Posts: 2,379
Default

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?
__________________
  #3  
Old 10-15-2015, 05:14 PM
SamwiseRed SamwiseRed is offline
Planar Protector

SamwiseRed's Avatar

Join Date: Dec 2011
Location: Tatooine
Posts: 10,187
Default

[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
  #4  
Old 10-15-2015, 05:27 PM
vouss vouss is offline
Banned


Join Date: Feb 2013
Posts: 1,765
Default

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
  #5  
Old 10-15-2015, 05:29 PM
SamwiseRed SamwiseRed is offline
Planar Protector

SamwiseRed's Avatar

Join Date: Dec 2011
Location: Tatooine
Posts: 10,187
Red face

not sure who he is either but i like his choice of icon [You must be logged in to view images. Log in or Register.]
__________________
Current Games:
Naw
  #6  
Old 10-15-2015, 05:54 PM
Buhbuh Buhbuh is offline
Planar Protector


Join Date: Jul 2010
Posts: 1,638
Default

who has 12:8

lol
  #7  
Old 10-15-2015, 06:13 PM
vouss vouss is offline
Banned


Join Date: Feb 2013
Posts: 1,765
Default

Jimi 12 8
  #8  
Old 10-15-2015, 06:30 PM
Buhbuh Buhbuh is offline
Planar Protector


Join Date: Jul 2010
Posts: 1,638
Default

oh, you were talking to me this whole time

i mained an enchanter

how much do you think i care about the leaderboard?
  #9  
Old 10-15-2015, 06:49 PM
pgerman pgerman is offline
Fire Giant

pgerman's Avatar

Join Date: Aug 2011
Location: CA
Posts: 528
Default .

Colgate has made a post for every single kill and /or engagement thats taken place in the last 2 years. No matter how trivial.


It happend


Colgate got mind raped


Ego subdued


The druid warrior bokke has made us all proud
  #10  
Old 10-15-2015, 06:55 PM
Nirgon Nirgon is offline
Banned


Join Date: Jun 2011
Location: Ruins of Old Paineel
Posts: 14,465
Default

I'm sure this will be the first thing on his mind as Vulak reaches the final 5% next week
Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:58 PM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.