摘要: #include <stdio.h> /* printf, scanf, NULL */ #include <stdlib.h> /* malloc, free */ struct node { int key; struct node *left, *right, *point; }; typed 阅读全文
posted @ 2017-12-01 20:48 Veritas_des_Liberty 阅读(454) 评论(0) 推荐(0)
摘要: /*Sorting from little to large use List*/ #include <stdio.h> /* printf, scanf, NULL */ #include <stdlib.h> /* malloc, free */ struct node { int key; s 阅读全文
posted @ 2017-12-01 19:34 Veritas_des_Liberty 阅读(615) 评论(0) 推荐(0)
摘要: B. Spreadsheets time limit per test 10 seconds memory limit per test 64 megabytes input standard input output standard output In the popular spreadshe 阅读全文
posted @ 2017-12-01 16:07 Veritas_des_Liberty 阅读(729) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-12-01 08:54 Veritas_des_Liberty 阅读(255) 评论(0) 推荐(0)