自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 资源 (10)
  • 收藏
  • 关注

原创 两数相加【C#】【.Net】

题目:给你两个非空 的链表,表示两个非负的整数。它们每位数字都是按照逆序的方式存储的,并且每个节点只能存储一位数字。请你将两个数相加,并以相同形式返回一个表示和的链表。你可以假设除了数字 0 之外,这两个数都不会以 0开头。提示:每个链表中的节点数在范围[1, 100]内 0 <= Node.val <= 9 题目数据保证列表表示的数字不含前导零解析:题目可以认为是超大整数相加运算,需要考虑得情况如下:链表移动问题,l1,l2需要每次向后移动一位...

2021-12-09 09:23:37 981

原创 两数之和(.Net)

题目:给定一个整数数组 nums和一个整数目标值 target,请你在该数组中找出 和为目标值 target的那两个整数,并返回它们的数组下标。你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。你可以按任意顺序返回答案。提示:2 <= nums.length <= 104-109 <= nums[i] <= 109-109 <= target <= 109只会存在一个有效答案分析:根据提示“只会存在...

2021-12-07 10:40:52 148

原创 【C#】A + B Problem II

namespace CalculatorAB2{ #region using direction using System; using System.Linq; #endregion class Program { static void Main(string[] args) { ...

2020-04-23 17:27:07 191

原创 【C#】Sum Problem

namespace CalculateSumN{ #region using direction using System; using System.Collections.Generic; #endregion class Program { static void Main(string[] args) ...

2020-04-23 14:53:15 166

原创 【C#】Calculate A + B.

namespace CalculateAB{ #region using directive using System; #endregion class Program { static void Main(string[] args) { var input = Console.In.Re...

2020-04-23 13:57:49 521

原创 正则解析 DBC

MessagePattern = "^BO_[ ]+(\\d+)[ ]+(\\w+):[ ]+(\\d+)[ ]+(\\w+)$";SignalPattern = "^SG_[ ]+(\\w+)[ ]+(((m)(\\d+[ ]+))|(M[ ]+))?:[ ]+(\\d+)\\|(\\d+)@([0|1])([+|-])[ ]+\\((-?\\d+(\\.\\d+)?),(-?\\d+(...

2019-12-06 10:00:34 702

原创 书,mark

原书名:Introduction to Algorithms中文名:算法导论原书名:The Design and Analysis of Computer Algorithms中文名:算法设计与分析原书名:Data Structures and Algorithms中文名:数据结构与算法原书名:Introduction to The Design & Analysis ...

2019-07-01 16:54:11 132

原创 C# 整数类型范围

下表显示了浮点类型的精度和大致范围。类型 大致范围 精度 float ±1.5 x 10−45 至 ±3.4 x 1038 大约 6-9 位数字 double ±5.0 × 10−324 到 ±1.7 × 10308 大约 15-17 位数字 decimal ±1.0 x 10-28 至 ±7.9228 x 1028 28-29 位...

2019-01-30 14:30:03 3675

原创 【马克】Some Web Site

Windows API Index.Net Reference Source .Net Reference Source GitHubUnicode 字符编码表.Net Document

2018-03-15 11:17:57 208

转载 【类型映射】WinAPI与.Net的类型映射

API与C#数据结构类型对应关系表API与C#的数据类型对应关系表API数据类型类型描述C#类型API数据类型类型描述C#类型WORD16位无符号整数ushortCHAR字符charLONG32位无符号整数intDWORDLONG64位长整数longDWORD32位无符号整数uintHDC设备描述表句柄intHANDLE句柄,32位整数intHGDIOBJGDI对象句柄intUINT32位无符号整...

2018-03-14 14:39:25 440

转载 shellapi

ShellExecute使用详解有三个API函数可以运行可执行文件WinExec、ShellExecute和CreateProcess。1.CreateProcess因为使用复杂,比较少用。2.WinExec主要运行EXE文件。如:WinExec('Notepad.exe Readme.txt', SW_SHOW);3.ShellExecute不仅可以运行EXE文件,也可以运行已经关联的文件。首先...

2015-11-23 08:48:43 2150

Attendance.zip

简单分析滑块验证

2021-12-06

PMA_Project.zip

使用dbc文件作为通信契约 使用can作为通信手段 实时监测下位机数据

2019-05-17

C#相关打包工具.tar

.Net Framework 打包工具 将exe打包成安装文件 可自定义相关配置

2019-05-17

DBCAnalysis.zip

根据.dbc文件定义解析数据,生成相对应的数据结构 dbc定义请查看vector相关文档

2019-05-17

中文 C++ _Primer_Plus_6 清晰版_.zip

C++ primary C++ 经典 初学者必看。 书中有一些小小的错误,不影响阅读。

2019-05-10

QT 开发实践 5 . 0

Qt支持C 、Python、Ruby、Perl等多种编程语言,常规用户应用程序、多媒体、后端系统管理、汽车、国防、家电、移动设备等多个领域都在广泛应用Qt。本书在全面阐述Qt基本功能的基础上,对新增的功能和服务进行了重点介绍。同时运用大量示例,集中讲解了应用程序的开发方法、技巧和必需的Qt API。读者通过实际动手操作能够迅速获得业务中的相关知识与经验,本书非常适合利用高级GUI和OpenGL ES开发3D图像应用程序的人阅读。

2019-05-06

C#-WPF-密码生成Tool

基于.Net Framework 4.0 WPF编写,根据Application Name 生成随机密码

2019-04-23

AUTOSAR 相关文档

AUTOSAR (AUTomotive Open System ARchitecture) is a worldwide development partnership of vehicle manufacturers, suppliers, service providers and companies from the automotive electronics, semiconductor and software industry.

2019-03-28

Specification of RTE

This specification and the material contained in it, as released by AUTOSAR, is for the purpose of information only. AUTOSAR and the companies that have contributed to it shall not be liable for any use of the specification. The material contained in this specification is protected by copyright and other types of Intellectual Property Rights. The commercial exploitation of the material contained in this specification requires a license to such Intellectual Property Rights. This specification may be utilized or reproduced without any modification, in any form or by any means, for informational purposes only. For any other purpose, no part of the specification may be utilized or reproduced, in any form or by any means, without permission in writing from the publisher. The AUTOSAR specifications have been developed for automotive applications only. They have neither been developed, nor tested for non-automotive applications. The word AUTOSAR and the AUTOSAR logo are registered trademarks.

2019-03-18

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除