首页
Notebook
Notebook
NumPy
Matplotlib
SciPy
算法练习
PAT
《算法笔记》
hdoj
力扣
算法设计与分析
Search
登录
or
注册
岁月悠悠,衰微只及肌肤;热忱抛却,颓唐必至灵魂。
Category
《算法笔记》
递归
全排列(DFS) (排列树) (原题:P1706 全排列问题 – 洛谷 | 计算机科学教育新生态 (luog...
Post on 2024-12-28
34
0
Alex's Notebook
背包问题
0-1背包 给定n种物品和一背包。物品i的重量是$\omega _i$,其价值为$c_i$,背包的容量为V。问应如何选择...
Post on 2024-12-22
72
0
Alex's Notebook
曲线拟合
多项式拟合 numpy.polyfit = polyfit(x, y, deg, rcond=None, full=Fa...
Post on 2024-05-09
325
0
Alex's Notebook
Matplotlib杂项
利用plt.gca( )进行坐标轴的移动 移动这四条轴,所有的操作均在plt.gca( )中完成,gca就是get cu...
Post on 2024-05-08
335
0
Alex's Notebook
Matplotlib 直方图
我们可以使用 pyplot 中的 hist() 方法来绘制直方图。 hist() 方法是 Matplotlib 库中的 ...
Post on 2024-05-07
349
0
Alex's Notebook
Matplotlib 饼图
饼图(Pie Chart)是一种常用的数据可视化图形,用来展示各类别在总体中所占的比例。 我们可以使用 pyplot 中...
Post on 2024-05-07
96
0
Alex's Notebook
Matplotlib 柱形图
我们可以使用 pyplot 中的 bar() 方法来绘制柱形图。 matplotlib.pyplot.bar(x, he...
Post on 2024-05-07
106
0
Alex's Notebook
Matplotlib 散点图
我们可以使用 pyplot 中的 scatter() 方法来绘制散点图。 matplotlib.pyplot.scatt...
Post on 2024-05-07
97
0
Alex's Notebook
Matplotlib 绘制多图
我们可以使用 pyplot 中的 subplot() 和 subplots() 方法来绘制多个子图。 subplot()...
Post on 2024-05-06
118
0
Alex's Notebook
Matplotlib轴标签/标题/网格线
xlabel() 和 ylabel() 方法来设置 x 轴和 y 轴的标签。 title() 方法来设置标题。 titl...
Post on 2024-05-06
118
0
1
2
3
4
X