https://www.cnblogs.com/jerry116/p/8969987.html optional "sudo iwlist wlx08beac06c8a9 scan | grep ESSID" "sudo nano /etc/wpa_supplicant/wpa_supplicant ...
分类:
其他好文 时间:
2020-05-18 16:38:32
阅读次数:
63
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1015/ 代码: #include <iostream> #include <algorithm> using namespace std; class S ...
分类:
其他好文 时间:
2020-05-18 01:07:50
阅读次数:
71
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1011/ 代码: class Solution { public: string reverseWords(string s) { int len = s. ...
分类:
其他好文 时间:
2020-05-18 01:02:43
阅读次数:
81
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1044/ 代码: #include <string> #include <algorithm> using namespace std; class Sol ...
分类:
其他好文 时间:
2020-05-18 01:00:39
阅读次数:
58
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1013/ 代码: #include <stack> class Solution { public: string simplifyPath(string ...
分类:
其他好文 时间:
2020-05-18 00:23:56
阅读次数:
56
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1014/ 代码: class Solution { public: string longestCommonPrefix(vector<string>& s ...
分类:
其他好文 时间:
2020-05-18 00:20:51
阅读次数:
72
2020-05-16 18:35:01 问题描述: 我们有一组排序的数字 D,它是 {'1','2','3','4','5','6','7','8','9'} 的非空子集。(请注意,'0' 不包括在内。) 现在,我们用这些数字进行组合写数字,想用多少次就用多少次。例如 D = {'1','3','5 ...
分类:
其他好文 时间:
2020-05-16 20:50:38
阅读次数:
79
发表于二月 7, 2020由星空下 主要关注两个方面: 文件在文件系统和进程中的表现 文件操作函数 文件操作函数 libc有fopen, fwrite, fread, fseek等库函数,系统调用有open, create, write, read, lseek, fcntl, ioctl等函数。 ...
分类:
其他好文 时间:
2020-05-16 00:41:52
阅读次数:
63
一、前言 这是一篇指导驱动工程师如何使用DMA API的文档,为了方便理解,文档中给出了伪代码的例程。另外一篇文档dma-api.txt给出了相关API的简明描述,有兴趣也可以看看那一篇,这两份文档在DMA API的描述方面是一致的。 二、从CPU角度看到的地址和从DMA控制器看到的地址有什么不同? ...
分类:
移动开发 时间:
2020-05-14 11:12:42
阅读次数:
69
先建立卡片 xml 。view_card_item.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android: ...
分类:
其他好文 时间:
2020-05-11 22:06:23
阅读次数:
68