मुझे पता है कि मैं बहुत देर से आया था, लेकिन मैं कुछ असाधारण, लेकिन कुछ मामलों का विकल्प देना चाहूंगा, जिनका यहां कोई उल्लेख नहीं है। उस स्थिति में जब कोई दक्षता के लिए इतना ध्यान नहीं रखता है, लेकिन वह अधिक सरलता के साथ कुछ चाहता है (शायद कोड की एक पंक्ति के साथ अंतिम प्रविष्टि मान पाएं), यह सब जावा 8 के आगमन के साथ काफी सरल हो जाएगा
। मैं कुछ उपयोगी परिदृश्य प्रदान करता हूं।
संपूर्णता के लिए, मैं इन विकल्पों की तुलना उन सरणियों के समाधान के साथ करता हूं जो पहले से ही अन्य उपयोगकर्ताओं द्वारा इस पोस्ट में उल्लिखित हैं। मैं सभी मामलों को समेटता हूं और मुझे लगता है कि वे उपयोगी होंगे (जब प्रदर्शन विशेष रूप से नए डेवलपर्स के लिए कोई फर्क नहीं पड़ता है), हमेशा प्रत्येक समस्या के मामले पर निर्भर करता है
संभव विकल्प
सरणी विधि का उपयोग
अनुवर्ती तुलना करने के लिए मैंने इसे पिछले उत्तर से लिया। यह समाधान @feresr के अंतर्गत आता है।
public static String FindLasstEntryWithArrayMethod() {
return String.valueOf(linkedmap.entrySet().toArray()[linkedmap.size() - 1]);
}
ArrayList विधि का उपयोग
थोड़ा अलग प्रदर्शन के साथ पहले समाधान के समान
public static String FindLasstEntryWithArrayListMethod() {
List<Entry<Integer, String>> entryList = new ArrayList<Map.Entry<Integer, String>>(linkedmap.entrySet());
return entryList.get(entryList.size() - 1).getValue();
}
विधि कम करें
यह विधि धारा के अंतिम तत्व को प्राप्त करने तक तत्वों के सेट को कम कर देगी। इसके अलावा, यह केवल निर्धारक परिणाम देगा
public static String FindLasstEntryWithReduceMethod() {
return linkedmap.entrySet().stream().reduce((first, second) -> second).orElse(null).getValue();
}
छोड़ना विधि
इस विधि से पहले सभी तत्वों को छोड़ कर धारा का अंतिम तत्व मिलेगा
public static String FindLasstEntryWithSkipFunctionMethod() {
final long count = linkedmap.entrySet().stream().count();
return linkedmap.entrySet().stream().skip(count - 1).findFirst().get().getValue();
}
वैकल्पिक विकल्प
Google Guava से Iterables.getLast। यह सूचियों और SortedSets के लिए कुछ अनुकूलन भी है
public static String FindLasstEntryWithGuavaIterable() {
return Iterables.getLast(linkedmap.entrySet()).getValue();
}
यहाँ पूर्ण स्रोत कोड है
import com.google.common.collect.Iterables;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
public class PerformanceTest {
private static long startTime;
private static long endTime;
private static LinkedHashMap<Integer, String> linkedmap;
public static void main(String[] args) {
linkedmap = new LinkedHashMap<Integer, String>();
linkedmap.put(12, "Chaitanya");
linkedmap.put(2, "Rahul");
linkedmap.put(7, "Singh");
linkedmap.put(49, "Ajeet");
linkedmap.put(76, "Anuj");
//call a useless action so that the caching occurs before the jobs starts.
linkedmap.entrySet().forEach(x -> {});
startTime = System.nanoTime();
FindLasstEntryWithArrayListMethod();
endTime = System.nanoTime();
System.out.println("FindLasstEntryWithArrayListMethod : " + "took " + new BigDecimal((endTime - startTime) / 1000000.000).setScale(3, RoundingMode.CEILING) + " milliseconds");
startTime = System.nanoTime();
FindLasstEntryWithArrayMethod();
endTime = System.nanoTime();
System.out.println("FindLasstEntryWithArrayMethod : " + "took " + new BigDecimal((endTime - startTime) / 1000000.000).setScale(3, RoundingMode.CEILING) + " milliseconds");
startTime = System.nanoTime();
FindLasstEntryWithReduceMethod();
endTime = System.nanoTime();
System.out.println("FindLasstEntryWithReduceMethod : " + "took " + new BigDecimal((endTime - startTime) / 1000000.000).setScale(3, RoundingMode.CEILING) + " milliseconds");
startTime = System.nanoTime();
FindLasstEntryWithSkipFunctionMethod();
endTime = System.nanoTime();
System.out.println("FindLasstEntryWithSkipFunctionMethod : " + "took " + new BigDecimal((endTime - startTime) / 1000000.000).setScale(3, RoundingMode.CEILING) + " milliseconds");
startTime = System.currentTimeMillis();
FindLasstEntryWithGuavaIterable();
endTime = System.currentTimeMillis();
System.out.println("FindLasstEntryWithGuavaIterable : " + "took " + (endTime - startTime) + " milliseconds");
}
public static String FindLasstEntryWithReduceMethod() {
return linkedmap.entrySet().stream().reduce((first, second) -> second).orElse(null).getValue();
}
public static String FindLasstEntryWithSkipFunctionMethod() {
final long count = linkedmap.entrySet().stream().count();
return linkedmap.entrySet().stream().skip(count - 1).findFirst().get().getValue();
}
public static String FindLasstEntryWithGuavaIterable() {
return Iterables.getLast(linkedmap.entrySet()).getValue();
}
public static String FindLasstEntryWithArrayListMethod() {
List<Entry<Integer, String>> entryList = new ArrayList<Map.Entry<Integer, String>>(linkedmap.entrySet());
return entryList.get(entryList.size() - 1).getValue();
}
public static String FindLasstEntryWithArrayMethod() {
return String.valueOf(linkedmap.entrySet().toArray()[linkedmap.size() - 1]);
}
}
यहां प्रत्येक विधि के प्रदर्शन के साथ आउटपुट है
FindLasstEntryWithArrayListMethod : took 0.162 milliseconds
FindLasstEntryWithArrayMethod : took 0.025 milliseconds
FindLasstEntryWithReduceMethod : took 2.776 milliseconds
FindLasstEntryWithSkipFunctionMethod : took 3.396 milliseconds
FindLasstEntryWithGuavaIterable : took 11 milliseconds