摘要: 中文版本介绍 **项目地址:https://github.com/JohnYang1210/PycomCAD ** PyComCAD介绍及开发方法 1.综述 ​ 提到Autocad在工业界的二次开发,VB或者Lisp可能作为常用的传统的编程语言。但是,Python语言简洁,优雅,学习门槛低,理应在A 阅读全文
posted @ 2021-02-27 18:32 JohnYang819 阅读(4552) 评论(1) 推荐(1) 编辑
摘要: 参考:https://learn.microsoft.com/zh-tw/dotnet/api/system.resources.resxresourcewriter.generate?view=windowsdesktop-8.0&viewFallbackFrom=netcore-3.1 代码实现 阅读全文
posted @ 2024-10-14 23:17 JohnYang819 阅读(3) 评论(0) 推荐(0) 编辑
摘要: (1) /// <summary> /// 复制内存 /// </summary> /// <param name="dest">目标指针位置</param> /// <param name="src">源指针位置</param> /// <param name="count">字节长度</para 阅读全文
posted @ 2024-10-11 23:49 JohnYang819 阅读(3) 评论(0) 推荐(0) 编辑
摘要: using System; using System.CodeDom.Compiler; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using Sy 阅读全文
posted @ 2024-08-09 10:52 JohnYang819 阅读(8) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 快速排序中的切分 /// lIndex已经是基准值,i记录基准值的大小值的边界,j记录目前遍历的边界; /// i值必须从lIndex+1开始,因为基准值已经在lIndex位置了, /// i位置的值必须大于基准值,因为发现比基准值小的值,需要和i位置的值交换, 阅读全文
posted @ 2024-08-07 22:44 JohnYang819 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ​最小距离点对问题,顾名思义,即在一堆点中,寻找最小距离的点对。 暴力枚举的时间复杂度为O(n2),分治算法的时间复杂度为O(nlogn)。 以下解决的问题是: 生成任意多个随机点,找到最近的点对后,将这对点排除在外,继续寻找剩下的点的最近的点对,重复上述操作,直到把所有点排除完毕(个数剩下为1,也 阅读全文
posted @ 2024-07-28 23:58 JohnYang819 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 逆序对计数问题是一个经典的算法问题,常见于计算机科学和数据结构领域。它的目标是计算数组中所有的逆序对的数量。逆序对是指数组中两个元素满足位置关系(i,j),且有 A[i]>A[j]. 它的应用有: 排序算法分析:逆序对可以用来衡量一个数组的有序程度。一个数组的逆序对数越多,它就越无序。对逆序对的分析 阅读全文
posted @ 2024-07-27 11:17 JohnYang819 阅读(13) 评论(0) 推荐(0) 编辑
摘要: public class MergeSortLearn { /// <summary> /// 分治递归 /// </summary> /// <param name="oriArray"></param> /// <returns></returns> public static double[] 阅读全文
posted @ 2024-07-24 23:33 JohnYang819 阅读(3) 评论(0) 推荐(0) 编辑
摘要: <Window x:Class="TwoColumnListBox.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/ 阅读全文
posted @ 2024-07-23 13:45 JohnYang819 阅读(5) 评论(0) 推荐(0) 编辑
摘要: (1)任务管理器 (2)chkdsk (3)sfc/scannow 阅读全文
posted @ 2024-05-12 19:14 JohnYang819 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 问题:未能加载文件或程序集“Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed”或它的某一个... 问题分析: 原因是因为引用的Microsoft.AspNet.SignalR.Clie 阅读全文
posted @ 2024-04-27 10:05 JohnYang819 阅读(402) 评论(0) 推荐(0) 编辑