会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
-Asurada-
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
下一页
2021年1月5日
C++ OnlineJudge
摘要: 基本输入输出 1.接收多行数据,直到文件末尾 1 #include <iostream> 2 //#include <bits/stdc++.h> 3 #include <string> 4 5 using namespace std; 6 7 int main() 8 { 9 string sa,
阅读全文
posted @ 2021-01-05 12:12 -Asurada-
阅读(345)
评论(0)
推荐(0)
2020年6月24日
visio激活
摘要: @echo offtitle Activate Microsoft Visio 2019&cls&echo &echo #Visio: Activating Microsoft software products for FREE without software&echo &echo.&echo
阅读全文
posted @ 2020-06-24 21:06 -Asurada-
阅读(338)
评论(0)
推荐(0)
2020年6月3日
对求多元函数微分的理解
摘要: 例如:求e^(x+2y+3z)+xyz=1 求dz (可确定z=z(x,y)函数) 方法1:对两边求微分得 e^(x+2y+3z)d(x+2y+3z)+d(xyz)=0 该方法使用了微分形式得不变性,也就是说此时这个式子在求微分的时候不用管谁是谁得函数,将自变量和应变量一视同仁,看作是平等的量 为了
阅读全文
posted @ 2020-06-03 17:07 -Asurada-
阅读(2937)
评论(0)
推荐(0)
2020年5月30日
微分方程中齐次的概念
摘要: 微分方程中有两个地方用到齐次: 1、形如y'=f(y/x)的方程称为“齐次方程”,这里是指方程中每一项关于x、y的次数都是相等的,这个是指dy/dx是0次齐次函数。 2、形如y''+py'+qy=0的方程称为“齐次线性方程”,这里“齐次”是指方程中每一项关于未知函数y及其导数y',y'',……的次数
阅读全文
posted @ 2020-05-30 09:14 -Asurada-
阅读(9200)
评论(0)
推荐(1)
2019年10月27日
KMP求解next解题方法
摘要: https://blog.csdn.net/yyp0304Devin/article/details/89853300?tdsourcetag=s_pctim_aiomsg#%E4%B8%89%E3%80%81%E8%A7%A3%E9%A2%98%E6%96%B9%E6%B3%95
阅读全文
posted @ 2019-10-27 21:27 -Asurada-
阅读(226)
评论(0)
推荐(0)
2019年10月19日
定点小数补码表示方法
摘要: 补码(Two's complement)、反码(Ones' Complement)、原码(Sign Magnitude): 注意,补码和反码中,撇号的位置不同。 术语补码来源于这样一个情况,对于非负数x,我们用2ⁿ - x(这里只有一个2)来计算-x的n位表示; 术语反码来源于这样一个属性,我们用[
阅读全文
posted @ 2019-10-19 13:08 -Asurada-
阅读(6280)
评论(0)
推荐(0)
2019年7月19日
Web
摘要: package com.situ.cotroller; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.springframework.beans.fact...
阅读全文
posted @ 2019-07-19 00:07 -Asurada-
阅读(218)
评论(0)
推荐(0)
2019年5月29日
666
摘要: #include <iostream>#include <math.h> using namespace std; class newInt{public: int x; newInt(int x=0):x(x){} friend istream &operator>>(istream &is,ne
阅读全文
posted @ 2019-05-29 17:41 -Asurada-
阅读(381)
评论(0)
推荐(0)
2019年5月23日
灯光问题
摘要: #include using namespace std; int a[31]={0}; int sum=0; void dfs(int cur) { if(a[cur-1]==0) { a[cur]=1; } if(cur==30) { sum++; return; } else ...
阅读全文
posted @ 2019-05-23 21:26 -Asurada-
阅读(211)
评论(0)
推荐(0)
2019年5月21日
dfs()
摘要: const int n = 4; void dfs(int cur) { if(n==cur) { for(int i=0;i using namespace std; const int maxn=6; const int maxm=6; int vis[maxm][maxn]={0}; void dfs(int x,int y,int cur) { ...
阅读全文
posted @ 2019-05-21 23:39 -Asurada-
阅读(244)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
下一页
公告