Jason‘s Blog


  • Home

  • About

  • Tags

  • Categories

  • Archives

  • Sitemap

  • Search

python办公

Posted on 2020-05-20
Words count in article: 1.2k | Reading time ≈ 5
python办公Working with Paths12345678910111213from pathlib import Pathpath = Path("__init__.py")path.exists() #让文件一直打开着print(path.is_file()) # 判断该路径是否为 ...
Read more »

82-83删除链表的重复元素

Posted on 2020-05-20
Words count in article: 797 | Reading time ≈ 3
82. 删除排序链表中的重复元素 II下面是题目 下面是题目给出的模板1234567891011121314/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode ...
Read more »

1124表现良好的最长时间段

Posted on 2020-05-20
Words count in article: 111 | Reading time ≈ 1
1124表现良好的最长时间段 解答1234567891011121314151617181920212223242526#include<bits/stdc++.h>using namespace std;class Solution {public: int longe ...
Read more »

636函数独占时间

Posted on 2020-05-19
Words count in article: 571 | Reading time ≈ 2
636函数独占时间 下面是题目给出的模板123456class Solution {public: vector<int> exclusiveTime(int n, vector<string>& logs) { }} ...
Read more »

C++多态

Posted on 2020-05-19
Words count in article: 1.1k | Reading time ≈ 4
Day07总结静态联编和动态联编12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717 ...
Read more »

利用openpyxl操作表格

Posted on 2020-05-18
Words count in article: 413 | Reading time ≈ 2
利用openpyxl操作表格下载openpyxl1pip install openpyxl 输出单元格信息 123456import openpyxl as xlwb = xl.load_workbook('transactions.xlsx')sheet = wb['Sheet1']cell = ...
Read more »

Mysql基础

Posted on 2020-05-16
Words count in article: 10.8k | Reading time ≈ 49
Mysql基础简介数据库分为 Relational 和 NoSQL 两种,也就是我们所说的关系型数据库和非关系型数据库。 Mysql是一个关系型数据库,可以通过sql语言进行各种操作。除此之外还有SQL server,Oracle等数据库 MongoDB是一个非关系型数据库,通过 键值对的方式来存储 ...
Read more »

连通分量

Posted on 2020-05-15 | In 图
Words count in article: 2.6k | Reading time ≈ 11
连通分量1.连通图和连通分量:连通图:无向图中,如果顶点vi到vj有路径,则称vi和vj是联通的,如果图中任意两个顶点都是连通的,则称G为连通图。 连通分量:无向图G的极大连通子图称为G的连通分量。极大连通子图的意思是:该子图是G的连通子图,如果再加入一个顶点,该子图不连通。下图中该图有三个连通分 ...
Read more »

斯托克斯公式

Posted on 2020-05-15
Words count in article: 128 | Reading time ≈ 1
斯托克斯公式斯托克斯公式 作用 :把第二类空间曲面积分和第二类空间曲线积分相联系 例题 空间曲线积分与路径无关的条件 环流量与旋度 注意点1.遵守右手定则,四只手指弯曲,沿着曲线方向,大拇指的指向就是曲面的方向了 2.斯托克斯公式展开的时候 $\vec j$ 对应的符号是负的,这千万别搞错 ...
Read more »

离散概率part2

Posted on 2020-05-15
Words count in article: 4.4k | Reading time ≈ 19
离散概率part2 随机变量DefinitionA random variable (r.v.) X is a function from sample space of an experiment to the set of real numbers in R, i.e.,$\forall \om ...
Read more »
<i class="fa fa-angle-left"></i>1…272829…44<i class="fa fa-angle-right"></i>

Jason

437 posts
11 categories
61 tags
GitHub E-Mail
Links
  • 友链:杨弘的博客
  • 友链:赵奕轲的博客
  • Like it, STAR ME
0%
© 2025 Jason