find函数的使用简言之:输入为:寻找的对象和条件;输出为:满足条件的数的位置。当没有寻找到满足条件的值时,返回空矩阵;例如在某向量/矩阵中寻找为零的数,寻找不为零的数,寻找某一范围内的数,判断是否有满足条件的数以及有多少等等: Example 1. find函数若不明确写出寻找条件而是仅仅写出寻找 ...
分类:
其他好文 时间:
2020-05-30 19:58:41
阅读次数:
340
TCP客户端 W5500的TCP客户端百度到处都有,而且都是一个模子 简而言之:就是这么写,这么用 上菜 /** * @brief TCP客户端 * @param None * @retval None * @warning None * @example **/ void do_tcpc(void ...
分类:
其他好文 时间:
2020-05-30 12:29:50
阅读次数:
129
问题: 给定数组, 假定反转动作k,表示:将数组前k个元素进行反转。 求反转动作k的序列,使得数组最终成为一个递增数组。(特:该数组为1~A.size()的一个排序) Example 1: Input: [3,2,4,1] Output: [4,2,4,3] Explanation: We perf ...
分类:
其他好文 时间:
2020-05-30 10:28:57
阅读次数:
55
Given a string, you are supposed to output the length of the longest symmetric sub-string. For example, given Is PAT&TAP symmetric?, the longest symme ...
分类:
其他好文 时间:
2020-05-30 01:16:17
阅读次数:
60
描述 C 库函数 char *strstr(const char *haystack, const char *needle) 在字符串 haystack 中查找第一次出现字符串 needle 的位置,不包含终止符 '\0'。 声明 char *strstr(const char *haystack ...
分类:
其他好文 时间:
2020-05-29 23:42:12
阅读次数:
112
在C:\Program Files\Vim目录下的 _vimrc文件中,插入基本配置,包括中文乱码,行号和主题。 " Vim with all enhancements source $VIMRUNTIME/vimrc_example.vim " 解决中文乱码 set encoding=utf-8 ...
分类:
系统相关 时间:
2020-05-29 21:39:22
阅读次数:
110
问题: 给定数组,求一对 index为 ( i , j ) 的 A[i] <= A[j] && i < j,两个index距离最远。(即max(j-i)) Example 1: Input: [6,0,8,2,1,5] Output: 4 Explanation: The maximum width ...
分类:
其他好文 时间:
2020-05-29 15:12:28
阅读次数:
66
题目如下: A happy string is a string that: consists only of letters of the set ['a', 'b', 'c']. s[i] != s[i + 1] for all values of i from 1 to s.length - ...
分类:
移动开发 时间:
2020-05-29 10:03:22
阅读次数:
64
删除链表中倒数第n个结点 题目:LeetCode19 Given a linked list, remove the n-th node from the end of list and return its head. Example: Given linked list: 1->2->3->4- ...
分类:
其他好文 时间:
2020-05-29 09:26:32
阅读次数:
50
模块化就是将系统分解成一个一个独立的功能模块,模块是独立的,可复用的,模块之间是解耦的。 CommonJS Commonjs模块是一个可复用的js块,通过exports输出这个特定对象,其他模块通过require()引用此对象; CommonJS支持无封装的模块(即没有定义的相关语句),把我们从AM ...
分类:
Web程序 时间:
2020-05-28 16:33:50
阅读次数:
81