This method should return the common elements between an Doubly Linked List in a ascendant order and a Doubly Linked List in a descendant order

前端 未结 0 1283
一整个雨季
一整个雨季 2020-12-03 05:52

public DoublyLinkedList elementosComunes(DoublyLinkedList desc){

    if (this.isEmpty() || desc.isEmpty())
    return null;

    DoublyLinkedList com         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题