自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

转载 2020-11-23

在Ubuntu上使用恢复模式及Recovery Mode各选项的使用方法https://ywnz.com/linuxjc/5006.html

2020-11-23 15:14:44 79

转载 2020-10-20

PyTorch环境配置及安装:https://www.cnblogs.com/zhouzhiyao/p/11784055.html

2020-11-23 15:13:20 52

转载 2020-11-12

Python调用C++程序的几种方法https://blog.csdn.net/zong596568821xp/article/details/81133511

2020-11-23 15:12:25 61

转载 2020-11-18

Ubuntu 安装 Matlabhttps://www.cnblogs.com/sixuwuxian/p/12512275.html

2020-11-23 15:10:57 107

转载 2020-11-04

Ubuntu(Linux)系统下如何查看自己安装的CUDA和CUDNN的版本https://blog.csdn.net/qq_38451119/article/details/83302585cuda和cudnn安装https://www.cnblogs.com/deeplearning1314/p/8444352.html显卡驱动安装https://jingyan.baidu.com/article/d7130635c5a86113fdf47532.html...

2020-11-04 16:49:57 213

原创 2020-10-31

实验室工作站环境配置:win7下利用EasyBCD安装Ubuntu14.04https://jingyan.baidu.com/article/e4d08ffdace06e0fd2f60d39.htmlWindows10安装Ubuntu18.06双系统https://www.cnblogs.com/masbay/p/10745170.html

2020-10-31 21:36:39 148

原创 2020-10-20

//快速排序(C语言)//17,18,60,40,7,32,73,65,85 =》 7,17,18,32,40,60,65,73,85 #include<stdio.h>int Partivation(int a[],int low,int high){ int key=a[low]; while(low<high){ while(low<high&&a[high]>key) high--; if(low<high){ a.

2020-10-20 09:25:31 69

原创 2020-10-20

//给定年月日,求是星期几#include<stdio.h>int IsLeap(int year){ if(year%4==0&&year%100!=0){ return 1; } if(year%400==0){ return 1; } return 0;}int main(){ int year,month,day; scanf("%d%d%d",&year,&month,&day); int numb.

2020-10-20 09:21:15 168

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除