リンクリスト内の最大値と最小値を見つけるために、Javaの書込みの二つの方法の最小値と最大値を使用しますが、入力リストは、整数の配列であります

user2495:
  • 私は、ノードの最大値とリンクリスト内のノードの最小値を見つけるために、二つの方法最小値と最大値を書きたいです。
  • 例えば(abc.minその後ABCストア{1、78、-9、42、0、14}という変数)は(戻り-9及びabc.max必要がある場合)78を返すべきです。
  • リストが空の場合、それは返す必要があります-1。返された値を出力します。

    私は整数の配列を入力することにより、リンクリストに最大値と最小値を計算することができますどのようにこの中で私を助けてください。

    ```package demo;
    
      public class MaximumMinimum {
    
       class Node{  
            int data;  
            Node next;  
    
        public Node(int data) {  
            this.data = data;  
            this.next = null;  
        }  
    }  
    
    //Represent the head and tail of the singly linked list 
        public Node head = null;  
        public Node tail = null;  
    
       //addNode() will add a new node to the list  
       public void addNode(int data) {  
           //Create a new node  
           Node newNode = new Node(data);  
    
          //Checks if the list is empty  
        if(head == null) {  
            //If list is empty, both head and tail will point to new node  
            head = newNode;  
            tail = newNode;  
        }  
        else {  
            //newNode will be added after tail such that tail's next will point to newNode  
            tail.next = newNode;  
            //newNode will become new tail of the list  
            tail = newNode;  
        }  
    }  
    
    //minNode() will find out the minimum value node in the list  
    public void minNode() {  
        Node current = head;  
        int min;  
    
        if(head == null) {  
            System.out.println("List is empty");  
        }  
        else {  
            //Initializing min with head node data  
            min = head.data;  
    
            while(current != null){  
                 //If current node's data is smaller than min  
                 //Then, replace value of min with current node's data  
                 if(min > current.data) {  
                     min = current.data;  
                 }  
                 current= current.next;  
            }  
            System.out.println("Minimum value node in the list: "+ min);  
        }  
    }  
    
    //maxNode() will find out the maximum value node in the list  
    public void maxNode() {  
        Node current = head;  
        int max;  
    
        if(head == null) {  
            System.out.println("List is empty");  
        }  
        else {  
            //Initializing max with head node data  
            max = head.data;  
    
            while(current != null){  
                 //If current node's data is greater than max  
                 //Then, replace value of max with current node's data  
                 if(max < current.data) {  
                     max = current.data;  
                 }  
                 current = current.next;  
            }  
            System.out.println("Maximum value node in the list: "+ max);  
        }  
    }  
    
    public static void main(String[] args) {
        MaximumMinimum sList = new MaximumMinimum(); 
    
        //Adds data to the list  
        sList.addNode(5);  
        sList.addNode(8);  
        sList.addNode(1);  
        sList.addNode(6);  
    
        //Display the minimum value node in the list  
        sList.minNode();  
    
        *//Display the maximum value node in the list *
        sList.maxNode();  
        }  
      }  ```
    
Aashish Pawar:

コードは正しい方法で実行されて与えられます。

また、使用することができます

MaximumMinimum sList = new MaximumMinimum(); 
List<Integer> list = new ArrayList<>();
Node head = sList.head;
while(head != null){
    list.add(head.data);
    head= head.next;
}
//no recommended if you want to design your own method    
System.out.println(list);
System.out.println(Collections.max(list));
System.out.println(Collections.min(list));

に整数の配列を入力します

public void stores(int[] array)
{
    for(int element:array)
    {
        this.addNode(element);
    }
}

そして、あなたがメインで実行する場合

 int[] elements = {1, 78, -9, 42 , 0, 14};
    sList.stores(elements);
    sList.maxNode(); //78
    sList.minNode();//-9

また、あなたは使用することができますArrays.stream(array_name).forEach(e->sList.add(e))は、Java 8の方法でそれをしたい場合。

おすすめ

転載: http://43.154.161.224:23101/article/api/json?id=318682&siteId=1