
算法
文章平均质量分 60
Bill11YAng
这个作者很懒,什么都没留下…
展开
-
10进制转16进制
static int m = 0; static string[] str = new string[16]; public static string[] GetBitValueByInt(int i) { // int n = 0; int quotient = i / 16;原创 2017-11-21 11:48:42 · 256 阅读 · 0 评论 -
dikesitela 迪克斯特拉算法
???????????????仅供参考 , 是否有bug还未进一步验证 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace dikesitela { class Dikesitela原创 2017-11-28 13:26:23 · 454 阅读 · 0 评论 -
C#中的unsafe代码
public static void Main() { string stringA = "I seem to be turned around"; int copylen = stringA.Length; IntPtr sptr = Marshal.StringToHGlobalAnsi(stringA)原创 2018-01-19 19:48:44 · 630 阅读 · 0 评论