मैं एक ArrayList का अंतिम मूल्य कैसे प्राप्त कर सकता हूं?
मैं ArrayList के अंतिम सूचकांक को नहीं जानता।
getLast()
मैं एक ArrayList का अंतिम मूल्य कैसे प्राप्त कर सकता हूं?
मैं ArrayList के अंतिम सूचकांक को नहीं जानता।
getLast()
जवाबों:
निम्नलिखित List
इंटरफ़ेस का हिस्सा है (जो ArrayList लागू करता है):
E e = list.get(list.size() - 1);
E
तत्व प्रकार है। सूची खाली है, तो get
एक फेंकता है IndexOutOfBoundsException
। आप यहां संपूर्ण एपीआई प्रलेखन पा सकते हैं ।
lastElement()
अपने लिए एक सरल तरीका लागू करने का फैसला क्यों किया Vector
लेकिन इसके लिए नहीं ArrayList
। उस असंगति के साथ क्या हो रहा है?
वेनिला जावा में एक सुंदर तरीका नहीं है।
गूगल अमरूद पुस्तकालय महान है - उनकी की जाँच Iterables
वर्ग । यह विधि तब फेंकेगी NoSuchElementException
यदि सूची खाली है, जैसा कि ए के विपरीत है IndexOutOfBoundsException
, जैसा कि विशिष्ट size()-1
दृष्टिकोण के साथ है - मुझे NoSuchElementException
बहुत अच्छा लगता है , या डिफ़ॉल्ट निर्दिष्ट करने की क्षमता:
lastElement = Iterables.getLast(iterableList);
अपवाद के बजाय यदि सूची खाली है, तो आप एक डिफ़ॉल्ट मान भी प्रदान कर सकते हैं:
lastElement = Iterables.getLast(iterableList, null);
या, यदि आप विकल्प का उपयोग कर रहे हैं:
lastElementRaw = Iterables.getLast(iterableList, null);
lastElement = (lastElementRaw == null) ? Option.none() : Option.some(lastElementRaw);
Iterables.getLast
जाँच को जोड़ना चाहिए कि क्या RandomAccess
लागू किया गया है और इसलिए यदि यह आइटम को O (1) में एक्सेस करता है।
Option
, आप मूल जावा का उपयोग कर सकते हैं Optional
। यह थोड़ा क्लीनर भी होगा lastElement = Optional.ofNullable(lastElementRaw);
:।
यह करना चाहिए:
if (arrayList != null && !arrayList.isEmpty()) {
T item = arrayList.get(arrayList.size()-1);
}
मैं सूची के अंतिम (और पहले) तत्व प्राप्त करने के लिए माइक्रो-उपयोग वर्ग का उपयोग करता हूं:
public final class Lists {
private Lists() {
}
public static <T> T getFirst(List<T> list) {
return list != null && !list.isEmpty() ? list.get(0) : null;
}
public static <T> T getLast(List<T> list) {
return list != null && !list.isEmpty() ? list.get(list.size() - 1) : null;
}
}
थोड़ा और अधिक लचीला:
import java.util.List;
/**
* Convenience class that provides a clearer API for obtaining list elements.
*/
public final class Lists {
private Lists() {
}
/**
* Returns the first item in the given list, or null if not found.
*
* @param <T> The generic list type.
* @param list The list that may have a first item.
*
* @return null if the list is null or there is no first item.
*/
public static <T> T getFirst( final List<T> list ) {
return getFirst( list, null );
}
/**
* Returns the last item in the given list, or null if not found.
*
* @param <T> The generic list type.
* @param list The list that may have a last item.
*
* @return null if the list is null or there is no last item.
*/
public static <T> T getLast( final List<T> list ) {
return getLast( list, null );
}
/**
* Returns the first item in the given list, or t if not found.
*
* @param <T> The generic list type.
* @param list The list that may have a first item.
* @param t The default return value.
*
* @return null if the list is null or there is no first item.
*/
public static <T> T getFirst( final List<T> list, final T t ) {
return isEmpty( list ) ? t : list.get( 0 );
}
/**
* Returns the last item in the given list, or t if not found.
*
* @param <T> The generic list type.
* @param list The list that may have a last item.
* @param t The default return value.
*
* @return null if the list is null or there is no last item.
*/
public static <T> T getLast( final List<T> list, final T t ) {
return isEmpty( list ) ? t : list.get( list.size() - 1 );
}
/**
* Returns true if the given list is null or empty.
*
* @param <T> The generic list type.
* @param list The list that has a last item.
*
* @return true The list is empty.
*/
public static <T> boolean isEmpty( final List<T> list ) {
return list == null || list.isEmpty();
}
}
isEmpty
जाँच नहीं करता है कि सूची खाली है और इस प्रकार होनी चाहिए isNullOrEmpty
और यह सवाल का हिस्सा नहीं है - या तो आप उत्तर के सेट को बढ़ाने की कोशिश करें या आप उपयोगिता कक्षाएं प्रदान करें (जो एक पुन: आविष्कार हैं)।
लंबोदर का उपयोग करना:
Function<ArrayList<T>, T> getLast = a -> a.get(a.size() - 1);
यदि आप कर सकते हैं, ArrayList
एक के लिए स्वैप करें ArrayDeque
, जिसमें सुविधाजनक तरीके हैं removeLast
।
जावा में सूची के अंतिम तत्व को प्राप्त करने का कोई सुंदर तरीका नहीं है (उदाहरण items[-1]
के लिए पायथन में)।
आपको उपयोग करना होगा list.get(list.size()-1)
।
जटिल विधि कॉल द्वारा प्राप्त सूचियों के साथ काम करते समय, वर्कअराउंड अस्थायी चर में होता है:
List<E> list = someObject.someMethod(someArgument, anotherObject.anotherMethod());
return list.get(list.size()-1);
यह बदसूरत और अक्सर महंगा या यहां तक कि काम नहीं करने वाले संस्करण से बचने का एकमात्र विकल्प है:
return someObject.someMethod(someArgument, anotherObject.anotherMethod()).get(
someObject.someMethod(someArgument, anotherObject.anotherMethod()).size() - 1
);
यह अच्छा होगा यदि इस डिजाइन दोष के लिए जावा जावा एपीआई को ठीक किया गया था।
List
इंटरफ़ेस में जोड़ा जाने लायक नहीं है । यदि आप केवल अंतिम तत्व में रुचि रखते हैं, तो आप किसी सूची को वापस करने की विधि क्यों कह सकते हैं? मुझे याद नहीं कि मैंने ऐसा पहले कभी देखा हो।
list.get(list.size()-1)
इस मुद्दे को दिखाने वाला न्यूनतम उदाहरण है। मैं सहमत हूं कि "उन्नत" उदाहरण विवादास्पद हो सकता है और संभवतः एक किनारे का मामला हो सकता है, मैं सिर्फ यह दिखाना चाहता था कि इस मुद्दे को और कैसे प्रचारित किया जा सकता है। मान someObject
लेते हैं कि बाहरी पुस्तकालय से आने वाला वर्ग विदेशी है।
ArrayDeque
इसके बजाय बेहतर उपयोग करते हैं।
ArrayList
।
जैसा कि समाधान में कहा गया है, यदि List
खाली है तो IndexOutOfBoundsException
फेंक दिया जाता है। एक बेहतर समाधान Optional
प्रकार का उपयोग करना है :
public class ListUtils {
public static <T> Optional<T> last(List<T> list) {
return list.isEmpty() ? Optional.empty() : Optional.of(list.get(list.size() - 1));
}
}
जैसा कि आप उम्मीद करेंगे, सूची का अंतिम तत्व एक के रूप में वापस आ गया है Optional
:
var list = List.of(10, 20, 30);
assert ListUtils.last(list).orElse(-1) == 30;
यह खाली सूचियों के साथ भी इनायत से पेश आता है:
var emptyList = List.<Integer>of();
assert ListUtils.last(emptyList).orElse(-1) == -1;
यदि आप इसके बजाय एक लिंक्डलिस्ट का उपयोग करते हैं, तो आप पहले तत्व और अंतिम को सिर्फ getFirst()
और getLast()
(यदि आप आकार की तुलना में एक क्लीनर तरीका चाहते हैं) का उपयोग कर सकते हैं (-1) और प्राप्त करें (0))
एक लिंक्डलिस्ट घोषित करें
LinkedList<Object> mLinkedList = new LinkedList<>();
फिर यह वे विधियाँ हैं जिनका आप उपयोग कर सकते हैं कि आप क्या चाहते हैं, इस मामले में हम एक सूची के सबसे पहले और पिछले तत्व के बारे में बात कर रहे हैं
/**
* Returns the first element in this list.
*
* @return the first element in this list
* @throws NoSuchElementException if this list is empty
*/
public E getFirst() {
final Node<E> f = first;
if (f == null)
throw new NoSuchElementException();
return f.item;
}
/**
* Returns the last element in this list.
*
* @return the last element in this list
* @throws NoSuchElementException if this list is empty
*/
public E getLast() {
final Node<E> l = last;
if (l == null)
throw new NoSuchElementException();
return l.item;
}
/**
* Removes and returns the first element from this list.
*
* @return the first element from this list
* @throws NoSuchElementException if this list is empty
*/
public E removeFirst() {
final Node<E> f = first;
if (f == null)
throw new NoSuchElementException();
return unlinkFirst(f);
}
/**
* Removes and returns the last element from this list.
*
* @return the last element from this list
* @throws NoSuchElementException if this list is empty
*/
public E removeLast() {
final Node<E> l = last;
if (l == null)
throw new NoSuchElementException();
return unlinkLast(l);
}
/**
* Inserts the specified element at the beginning of this list.
*
* @param e the element to add
*/
public void addFirst(E e) {
linkFirst(e);
}
/**
* Appends the specified element to the end of this list.
*
* <p>This method is equivalent to {@link #add}.
*
* @param e the element to add
*/
public void addLast(E e) {
linkLast(e);
}
तो, फिर आप उपयोग कर सकते हैं
mLinkedList.getLast();
सूची का अंतिम तत्व प्राप्त करने के लिए।
अमरूद अंतिम तत्व को प्राप्त करने का एक और तरीका प्रदान करता है List
:
last = Lists.reverse(list).get(0)
यदि प्रदान की गई सूची खाली है तो यह फेंकता है a IndexOutOfBoundsException
java.util.Collections#reverse
यह भी करता है।
चूंकि ArrayList में अनुक्रमण 0 से शुरू होता है और वास्तविक आकार से पहले एक जगह समाप्त होता है इसलिए अंतिम सरणी सूची तत्व को वापस करने के लिए सही कथन होगा:
int last = mylist.get (mylist.size () - 1);
उदाहरण के लिए:
यदि सरणी सूची का आकार 5 है, तो आकार -1 = 4 अंतिम सरणी तत्व को लौटाएगा।
सूची का अंतिम आइटम है list.size() - 1
। संग्रह एक सरणी द्वारा समर्थित है और अनुक्रमणिका 0 पर प्रारंभ होती है।
तो सूची में तत्व 1 सरणी में इंडेक्स 0 पर है
सूची में तत्व 2 सरणी में सूचकांक 1 पर है
सूची में तत्व 3 सरणी में सूचकांक 2 पर है
और इसी तरह..
यह कैसे .. कहीं आपकी कक्षा में ...
List<E> list = new ArrayList<E>();
private int i = -1;
public void addObjToList(E elt){
i++;
list.add(elt);
}
public E getObjFromList(){
if(i == -1){
//If list is empty handle the way you would like to... I am returning a null object
return null; // or throw an exception
}
E object = list.get(i);
list.remove(i); //Optional - makes list work like a stack
i--; //Optional - makes list work like a stack
return object;
}
यदि आप अपनी सूची को संशोधित करते हैं, तो listIterator()
अंतिम इंडेक्स (जो size()-1
क्रमशः है) से उपयोग और पुनरावृति करें । यदि आप फिर से विफल होते हैं, तो अपनी सूची संरचना की जांच करें।
Arraylist का अंतिम मान प्राप्त करने के लिए आपको बस इतना करना है कि आकार () का उपयोग करें। पूर्व के लिए। यदि आप पूर्णांकों की श्रेणीबद्धता करते हैं, तो अंतिम मूल्य प्राप्त करने के लिए आपको करना होगा
int lastValue = arrList.get(arrList.size()-1);
याद रखें, एक Arraylist में तत्वों को सूचकांक मूल्यों का उपयोग करके पहुँचा जा सकता है। इसलिए, ArrayLists आमतौर पर आइटम खोजने के लिए उपयोग किया जाता है।
सरणियाँ 'लंबाई' नामक एक स्थानीय चर में अपने आकार को संग्रहीत करती हैं। "A" नामक एक सरणी को देखते हुए आप सूचकांक मूल्य को जाने बिना अंतिम सूचकांक को संदर्भित करने के लिए निम्नलिखित का उपयोग कर सकते हैं
एक [a.length-1]
आपके द्वारा उपयोग किए जाने वाले इस अंतिम सूचकांक में 5 का मान निर्दिष्ट करने के लिए:
एक [a.length-1] = 5;
ArrayList
एक सरणी नहीं है।
कोटलिन में, आप इस विधि का उपयोग कर सकते हैं last
:
val lastItem = list.last()