一、语言与编程语言 1.1、 什么是语言?什么是编程语言?为何需要编程语言? 语言是人与人之间沟通的介质,如汉语、英语、法语。 同样,编程语言(programming language)也起到这样的作用,作为人与计算机之间沟通的工具被使用,可以同时被计算机和人同时理解。 那么,为什么需要有编程语言呢 ...
分类:
其他好文 时间:
2020-03-04 09:20:10
阅读次数:
70
记录https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/linq-and-file-directories的学习 查询具有指定扩展名的文件 (SearchOption.AllDirectorie ...
分类:
其他好文 时间:
2020-03-04 00:20:52
阅读次数:
96
1.编程语言介绍 机器语言~汇编语言~高级语言(解释型和编译型) 执行效率:机器语言 》汇编语言 》编译型语言 》解释型语言 开发效率:机器语言《 汇编语言《 编译型语言《 解释型语言 2.python介绍 python是一门高级、解释性、可跨平台语言(西方人喜欢说 life is short , ...
分类:
编程语言 时间:
2020-03-03 20:26:15
阅读次数:
80
概念 首先,Backpressure并不是响应式编程(Reactive Programming)独有的,编程中的Backpressure这个概念源自流体工程中的Backpressure。其次,Backpressure 并不是一种「机制」,也不是一种「策略」,而是一种现象,流体在管道运输中,流体由于管 ...
分类:
其他好文 时间:
2020-03-03 12:45:23
阅读次数:
52
Polycarp is preparing the first programming contest for robots. There are nn problems in it, and a lot of robots are going to participate in it. Each ...
分类:
其他好文 时间:
2020-03-03 09:16:12
阅读次数:
84
参考: https://docs.microsoft.com/zh-cn/dotnet/csharp/language-reference/keywords/async https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/ ...
给定一个非负整数数组,你最初位于数组的第一个位置。 数组中的每个元素代表你在该位置可以跳跃的最大长度。 判断你是否能够到达最后一个位置。 示例 1: 示例 2: 动态规划 这里可以用动态规划 Dynamic Programming 来解,维护一个一维数组 dp,其中 dp[i] 表示达到i位置时剩余 ...
分类:
其他好文 时间:
2020-03-02 12:50:20
阅读次数:
48
对于 SROP 技术只是了解过,实战还是第一次,记录一下原理以及 pwntools 相关工具的用法。 "4eriri ciscn_2019_es_7" "【技术分享】Sigreturn Oriented Programming攻击简介" "pwnlib.rop.srop" ...
分类:
其他好文 时间:
2020-03-02 10:25:28
阅读次数:
122
A. Contest for Robots Polycarp is preparing the first programming contest for robots. There are 𝑛n problems in it, and a lot of robots are going to p ...
分类:
其他好文 时间:
2020-03-02 01:18:29
阅读次数:
74
ABAP 其实ABAP的编程范式相对其他语言比较简单,没有太多异步操作。除了STARTING NEW TASK可以实现异步调用。 Use ABAP Multi Thread programming to deal with a real performance issue: https://blog ...
分类:
移动开发 时间:
2020-03-01 12:26:39
阅读次数:
78