本文分类:news发布日期:2025/1/22 12:44:48
相关文章
【拓扑的基】示例及详解
集合X的某拓扑的一个基是X的子集的一个族(其成员称为基元素),满足条件: 1. 2. 由基生成拓扑
由生成的拓扑(满足以上两个条件) 等价描述: 由所有可表示为的某些成员的井的那些集合组成 例1:
证明:由生成的族确实是拓扑…
建站知识
2025/1/17 9:23:21
【Leetcode】【240407】678. Valid Parenthesis String
It’s time to go back home, today’s in tomorrow lol BGM:无地自容(黑豹乐队《黑豹》)
Descripition
Given a string s containing only three types of characters: ‘(’, ‘)’ and ‘*’, return true if s is valid.
The following rules define a valid…
建站知识
2025/1/1 21:24:00
git 常用命令和使用方法
作者简介: 一个平凡而乐于分享的小比特,中南民族大学通信工程专业研究生在读,研究方向无线联邦学习 擅长领域:驱动开发,嵌入式软件开发,BSP开发 作者主页:一个平凡而乐于分享的小比特的个人主页…
建站知识
2025/1/18 16:10:23
Android Monkey自动化测试
monkey一般用于压力测试,用户模拟用户事件
monkey 基本用法
adb shell monkey [参数] [随机事件数]monkey常用命令
-v:用于指定反馈信息级别,总共分三个等级-v -v -vadb shell mokey -v -v -v 100-s:用于指定伪随机数生成器的种…
建站知识
2025/1/19 17:55:06
esp32连接wifi
1、简介
Wi-Fi设备有两种模式:
1.Access Point(AP) 模式,此为无线接入点,家里的光猫就是结合WiFi和internet路由功能的AP。
2.Station(STA)模式,此为 无线终端,连接到AP的装置,手机,电脑等需…
建站知识
2025/1/13 14:35:05
CS162 Operating System笔记
What is an Operating System? it’s typically a special layer of software that provides the application access to hardware resources.So.it’s convenient abs fractions of complex hardware devices.
建站知识
2025/1/16 3:11:03
Java | Leetcode Java题解之第13题罗马数字转整数
题目: 题解:
class Solution {Map<Character, Integer> symbolValues new HashMap<Character, Integer>() {{put(I, 1);put(V, 5);put(X, 10);put(L, 50);put(C, 100);put(D, 500);put(M, 1000);}};public int romanToInt(String s) {int …
建站知识
2025/1/18 19:30:12