Package gnu.trove

Examples of gnu.trove.TLinkedList


/*  82 */           l.add(i.next());
/*     */       }
/*     */
/*     */       public void ours()
/*     */       {
/*  87 */         List l = new TLinkedList();
/*  88 */         for (Iterator i = this.val$data.iterator(); i.hasNext(); )
/*  89 */           l.add(i.next());
/*     */       }
/*     */
/*     */       public String toString()
/*     */       {
/*  94 */         return "compares " + Main.dataset.size() + " LinkedList.add() operations";
View Full Code Here


/*     */   static class TroveListCreator
/*     */     implements MemoryUsage.Creator
/*     */   {
/*     */     public Object create()
/*     */     {
/* 200 */       TLinkedList list = new TLinkedList();
/* 201 */       for (int i = 0; i < 1000; i++) {
/* 202 */         TLinkableAdaptor a = new TLinkableAdaptor();
/* 203 */         list.add(a);
/*     */       }
/* 205 */       return list;
/*     */     }
View Full Code Here

TOP

Related Classes of gnu.trove.TLinkedList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.