Jason‘s Blog


  • Home

  • About

  • Tags

  • Categories

  • Archives

  • Sitemap

  • Search

对坐标的曲面积分

Posted on 2020-05-13
Words count in article: 347 | Reading time ≈ 1
对坐标的曲面积分有向曲面及曲面元素的投影曲面分为双侧曲面(内外,左右,上下)和单侧曲面(莫比乌斯环) 指定了侧的曲面叫做有向曲面,其方法用法向量指向表示: 设$\Sigma$为有向曲面,其面元$\Delta S$在xOy面上的投影记为$(\Delta S){xy}$,$(\Delta S){ ...
Read more »

python数据分析

Posted on 2020-05-13
Words count in article: 1.7k | Reading time ≈ 7
python数据分析这篇博文是对anaconda中的jupyter notebook进行的学习 学习网站点这里 Series in Pandasdocumentation ,里面介绍了很多 api How does a Pandas Series differ from a Python lis ...
Read more »

71简化路径

Posted on 2020-05-13
Words count in article: 360 | Reading time ≈ 1
71简化路径 勉强把题目看懂了。。但是还得看题解 1234567891011121314151617181920212223242526272829303132333435363738class Solution {public: string simplifyPath(string ...
Read more »

对面积的曲面积分

Posted on 2020-05-12
Words count in article: 744 | Reading time ≈ 2
对面积的曲面积分概念和性质引例设曲面形构件具有连续面密度$\rho(x,y,z)$,求质量M 定义 其中,$\lambda$表示n小块曲面直径的最大值(曲面的直径为其上任意两点间距离的最大者) 性质对面积的曲面积分与对弧长的曲线积分性质类似 积分的存在性:若f(x,y,z)在光滑曲面$\Sig ...
Read more »

856括号的分数

Posted on 2020-05-12
Words count in article: 230 | Reading time ≈ 1
856括号的分数 又是万恶的括号题!但是思路差不多 如果是左括号,那么入栈,用0模拟 如果是右括号,那么判断栈顶是不是等于0 如果等于0,那么就加一分,0出栈,1入栈 如果不等于0,说明中间含有数字。那么就把中间的数字全部取出来,计算出他们的和 因为不管中间是多少数字,还是要和(匹配的,所以最 ...
Read more »

735行星碰撞

Posted on 2020-05-12
Words count in article: 543 | Reading time ≈ 2
下面我自己调了一万年的狗屎算法我的思路是这样的 如果数组非空 判断新来的和老的是否同号 同号push 异号->判断是相近还是相离 相离,push 相近->判断尾部函数是不是大于新来的元素的绝对值 大于->撞死,下一轮循环 等于->pop+continue 小于->p ...
Read more »

离散概率

Posted on 2020-05-12
Words count in article: 1.3k | Reading time ≈ 6
离散概率 概念运算加 if $A\cap B = \emptyset$ $P(A\cup B) = P(A)+P(B)$ TheoremLet E1 and E2 be events in the sample space $\Omega$.Then $P(E_1\cup E_2)= P(E_1 ...
Read more »

880索引处地解码字符串

Posted on 2020-05-11
Words count in article: 488 | Reading time ≈ 2
我按照字符串解码的思路,超时了123456789101112131415161718192021222324252627282930313233class Solution {public: string decodeAtIndex(string S, int K) { ...
Read more »

456find132pattern

Posted on 2020-05-11
Words count in article: 536 | Reading time ≈ 2
555,BF失败!12345678910111213141516171819class Solution {public: bool find132pattern(vector<int>& nums) { if(nums.size()& ...
Read more »

1381设计一个支持增量操作的栈

Posted on 2020-05-11
Words count in article: 128 | Reading time ≈ 1
1381设计一个支持增量操作的栈 下面是解法123456789101112131415161718192021222324252627282930313233class CustomStack {private: vector<int>v; int top;publ ...
Read more »
<i class="fa fa-angle-left"></i>1…293031…45<i class="fa fa-angle-right"></i>

Jason

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