2019年3月26日

A Tool to Clip Images

摘要: using Microsoft.Win32; using System; using System.IO; using System.Text.RegularExpressions; using System.Windows; using System.Windows.Media.Imaging; namespace Clip { class Clip { [S... 阅读全文

posted @ 2019-03-26 22:31 JebediahKerman 阅读(166) 评论(0) 推荐(0)

2019年1月13日

Debug Dart at External Terminal

摘要: launch.json tasks.json DartLauncher.cs 阅读全文

posted @ 2019-01-13 12:42 JebediahKerman 阅读(389) 评论(0) 推荐(0)

Process Class (System.Diagnostics)

摘要: import sys def hanoi(n, a, b, c): if n == 1: print('%c --> %c' % (a, c)) else: hanoi(n-1, a, c, b) print('%c --> %c' % (a, c)) hanoi(n-1, b, a, c) if __nam... 阅读全文

posted @ 2019-01-13 00:20 JebediahKerman 阅读(281) 评论(0) 推荐(0)

2018年12月16日

C# __arglist 关键字

摘要: using System.Runtime.InteropServices; namespace Alpha { class Beta { [DllImport("msvcrt.dll")] static extern int scanf(string format, __arglist); [DllImport("msvcrt.d... 阅读全文

posted @ 2018-12-16 14:08 JebediahKerman 阅读(809) 评论(0) 推荐(0)

2018年10月4日

2017 NAIPC A:Pieces of Parentheses

摘要: my team solve the problem in the contest with similar ideathis is a more deep analysis The main idea is that if some comparator can be defined so that 阅读全文

posted @ 2018-10-04 16:13 JebediahKerman 阅读(520) 评论(0) 推荐(0)

2018年9月21日

NOIP2005循环

摘要: 描述 乐乐是一个聪明而又勤奋好学的孩子。他总喜欢探求事物的规律。一天,他突然对数的正整数次幂产生了兴趣。 众所周知,2的正整数次幂最后一位数总是不断的在重复2,4,8,6,2,4,8,6……我们说2的正整数次幂最后一位的循环长度是4(实际上4的倍数都可以说是循环长度,但我们只考虑最小的循环长度)。类 阅读全文

posted @ 2018-09-21 08:37 JebediahKerman 阅读(593) 评论(0) 推荐(0)

2016年12月4日

C#使用PriorityQueue

摘要: C#使用PriorityQueue 优先队列 阅读全文

posted @ 2016-12-04 10:22 JebediahKerman 阅读(2610) 评论(0) 推荐(0)

2016年12月2日

C#使用Vector

摘要: C#使用Vector 阅读全文

posted @ 2016-12-02 22:53 JebediahKerman 阅读(30247) 评论(0) 推荐(0)

2016年11月26日

C#读入整数

摘要: // ClassLibrary1.h #include #pragma once using namespace System; namespace ClassLibrary1 { public ref class Class1 { // TODO: 在此处添加此类的方法。 public: static int ReadInt(... 阅读全文

posted @ 2016-11-26 13:41 JebediahKerman 阅读(1300) 评论(0) 推荐(0)

2016年11月17日

NOIP2013PUZZLE

摘要: 测试数据 #0: Accepted, time = 0 ms, mem = 788 KiB, score = 5 测试数据 #1: Accepted, time = 0 ms, mem = 788 KiB, score = 5 测试数据 #2: Accepted, time = 0 ms, mem 阅读全文

posted @ 2016-11-17 20:33 JebediahKerman 阅读(266) 评论(0) 推荐(0)

导航