How to find the quartiles in the linked list with only one iteration

前端 未结 0 1038
野性不改
野性不改 2021-01-27 18:51

I have a singly linked list of integers. The node is defined as

    class Node {
        public:
            int value;
            Node *next = NULL;

    };


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