首页 > 试题广场 >

Linked List Sorting (25)

[编程题]Linked List Sorting (25)
  • 热度指数:4456 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 64M,其他语言128M
  • 算法知识视频讲解
A linked list consists of a series of structures, which are not necessarily adjacent in memory. We assume that each structure contains an integer key and a Next pointer to the next structure. Now given a linked list, you are supposed to sort the structures according to their key values in increasing order.

输入描述:
Each input file contains one test case. For each case, the first line contains a positive N (5) and an address of the head node, where N is the total number of nodes in memory and the address of a node is a 5-digit positive integer.  NULL is represented by -1.
Then N lines follow, each describes a node in the format:
Address Key Next
where Address is the address of the node in memory, Key is an integer in [-105, 105], and Next is the address of the next node. It is guaranteed that all the keys are distinct and there is no cycle in the linked list starting from the head node.


输出描述:
For each test case, the output format is the same as that of the input, where N is the total number of nodes in the list and all the nodes must be sorted order.
示例1

输入

5 00001
11111 100 -1
00001 0 22222
33333 100000 11111
12345 -1 33333
22222 1000 12345

输出

5 12345
12345 -1 00001
00001 0 11111
11111 100 22222
22222 1000 33333
33333 100000 -1
static class Node implements Comparable{
        int val;
        String address;
        String next;
        Node(String address,int val,String next){
            this.address = address;
            this.val = val;
            this.next = next;
        }
        
        public void changeNxt(String address) {
            this.next = address;
        }
        
        @Override
        public int compareTo(Object o) {
            // TODO Auto-generated method stub
            Node node = (Node)o;
            return this.val-node.val;
        }
        
    }
    
    public static void main(String[] args) {
        Node[] addr = new Node[100000];
        ArrayList<Node> validnodes = new ArrayList<Node>();
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        String head = scan.next();
        
        for(int i=0;i<N;i++) {
            String address = scan.next();
            int val = scan.nextInt();
            String next = scan.next();
            Node node = new Node(address,val,next);
            addr[Integer.parseInt(address)] = node;
        }
        
        if(head.equals("-1")) {
            System.out.println("0"+" "+"-1");
            return;
        }
        int p = Integer.parseInt(head);
        while(p!=-1) {
            Node node = addr[p];
            validnodes.add(node);
            p = Integer.parseInt(node.next);
        }
        Collections.sort(validnodes);
        for(int i=0;i<validnodes.size()-1;i++) {
            validnodes.get(i).changeNxt(validnodes.get(i+1).address);;
        }
        validnodes.get(validnodes.size()-1).changeNxt("-1");
        System.out.println(validnodes.size()+" "+validnodes.get(0).address);
        for(int i=0;i<validnodes.size();i++) {
            Node node = validnodes.get(i);
            System.out.print(node.address+" ");
            System.out.print(node.val+" ");
            System.out.println(node.next);
        }
    }
发表于 2018-03-11 16:54:11 回复(0)

问题信息

难度:
2条回答 8571浏览

热门推荐

通过挑战的用户