每周前端开源推荐第二期 strongloop/loopback LoopBack is an open source backend for your mobile apps. Connect to multiple data sources, write business logic in Nod ...
分类:
其他好文 时间:
2020-04-12 14:18:23
阅读次数:
70
This is a chart of GM Multiple diagnostic interface comparison: GM MDI 1 vs. GM MDI 2 kit. Therefore, it’s easy to find that the GM MDI 2 multiple dia ...
分类:
其他好文 时间:
2020-04-11 12:50:38
阅读次数:
69
1.为什么这样定义编译时候会报错:error: multiple storage classes in declaration specifiers typedef static int INT32 百度搜到的答案:typedef是存储类的关键字,和auto、static、register一样是存储 ...
分类:
其他好文 时间:
2020-04-09 20:18:13
阅读次数:
108
在学习了基于8086的x86汇编指令后,继续学习了32位、64位的x86汇编指令。其基本原理与8086基本一致,只是增加了X87浮点单元,以及用于浮点运算和多媒体处理的SIMD(Single Instruction Multiple Data,单指令多数据流)指令。
分类:
其他好文 时间:
2020-04-09 10:51:23
阅读次数:
83
题意: 求在长度为 $n$ 的数组中选择连续的元素,使其和是 $n$ 的倍数,输出元素个数和每个元素的值。 分析: 我们选取一段连续的元素。对原数组求前缀和,并且对 $n$ 取模,那么结果就会分布在 $[0,n)$ 之间。如果有一个前缀和取模 $n$ 的结果为 $0$,那么这个前缀和一定满足条件。否 ...
分类:
其他好文 时间:
2020-04-04 20:26:26
阅读次数:
70
删除主题 在主题目录 中直接删除即可。 首页和文章页使用不同主题 首页使用sidebar,文章页不使用sidebar,这样文章的内容可以占更宽的页面 1. 安装插件 Multiple Themes,来为不同页面设置不同的主题。 2. 将主题复制为一个新的主题,并将目录中的名称全都替换为新的名称,这样 ...
分类:
其他好文 时间:
2020-04-04 14:26:27
阅读次数:
59
作者:袁野 Date:2020-03-24 来源:物体的三维识别与6D位姿估计:PPF系列论文介绍(二)——PPF-MEAM 文章“Point Pair Feature-Based Pose Estimation with Multiple Edge Appearance Models (PPF-M ...
分类:
其他好文 时间:
2020-04-03 18:07:44
阅读次数:
145
Problem : Write a program that outputs the string representation of numbers from 1 to n. But for multiples of three it should output “Fizz” instead of ...
分类:
其他好文 时间:
2020-04-01 01:01:58
阅读次数:
55
1 /* 2 这道题用到了鸠巢原理又名容斥原理,我的参考链接:https://blog.csdn.net/guoyangfan_/article/details/102559097 3 4 题意: 5 这道题给你了n个数,让你找这n个数中有没有几个数的和是n的倍数 6 7 题解: 8 你循环遍历一遍 ...
分类:
其他好文 时间:
2020-03-31 14:19:18
阅读次数:
80