上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 65 下一页
摘要: Sub 宏1() ' ' 宏1 修改链接的数据源地址 ' ' Application.Left = 437.5 Application.Top = 171 ActiveWorkbook.ChangeLink Name:="C:\Users\Administrator\Desktop\测试\数据源.x 阅读全文
posted @ 2023-04-23 09:18 vba是最好的语言 阅读(238) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 机器人 不停尝试 /// </summary> /// <param name="start">开始位置</param> /// <param name="aim">要到的位置</param> /// <param name="n">总的数</param> /// 阅读全文
posted @ 2023-04-22 21:44 vba是最好的语言 阅读(13) 评论(0) 推荐(0) 编辑
摘要: public class ClientT { public void Request() { Target target = new AdapterT (); target.Request(); } } public class Target{ public virtual void Request 阅读全文
posted @ 2023-04-21 07:23 vba是最好的语言 阅读(10) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public int Fib(int n) { if(n==0 || n ==1) return n; int[] cache = new int[n+1]; cache[0] = 0; cache[1] = 1; for(int i=2;i<=n;i 阅读全文
posted @ 2023-04-19 22:05 vba是最好的语言 阅读(18) 评论(0) 推荐(0) 编辑
摘要: http://www.nndssk.com/rjwt/154922gHfJ3F.html 阅读全文
posted @ 2023-04-19 14:33 vba是最好的语言 阅读(60) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public IList<IList<int>> Generate(int numRows) { IList<IList<int>> rt = new List<IList<int>>(20); Queue queue = new Queue(); i 阅读全文
posted @ 2023-04-17 22:07 vba是最好的语言 阅读(18) 评论(0) 推荐(0) 编辑
摘要: namespace ZXDC; public class ZXDCS{ /// <summary> /// 前n位有多少中心对称数 /// n=1 1 8 0 /// n=2 11 69 96 88 /// </summary> public static void Show() { var zt 阅读全文
posted @ 2023-04-16 22:07 vba是最好的语言 阅读(7) 评论(0) 推荐(0) 编辑
摘要: namespace Binary; public class BinaryTree{ public Node<char> Head{ get; private set; } private string cStr{get;set;} public BinaryTree(string construc 阅读全文
posted @ 2023-04-16 12:44 vba是最好的语言 阅读(30) 评论(0) 推荐(0) 编辑
摘要: /** * Definition for singly-linked list. * public class ListNode { * public int val; * public ListNode next; * public ListNode(int x) { val = x; } * } 阅读全文
posted @ 2023-04-15 22:45 vba是最好的语言 阅读(10) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public int NumIslands(char[][] grid) { if(grid == null || grid.Count() == 0) return 0; int rowCount = grid.Count(); int colCou 阅读全文
posted @ 2023-04-15 12:16 vba是最好的语言 阅读(6) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 65 下一页