摘要:
namespace NDNGH; public class DTGH{ public static int Change(int n) { int minCount = -1, time = 0; for(int c5 = 0; c5 < n / 5; c5++) { for(int c3 = 0; 阅读全文
摘要:
构造树,并求每条路径和 第一步:构造树节点用到的类: public class Node{ public int Val{get;set;} public Node? LNode{get;set;} public Node? RNode{get;set;} public Node(int val) 阅读全文