首页 > TAG信息列表 > Zoe

2021-10-09

** Anaconda 安装Python和Windows 搭建Jupyter 虚拟环境 ** 1.Win+R : 打开windom命令窗口 2.conda env list : 查看Anaconda 当前环境(发现只有一个base环境,稍后会搭建一个jupter虚拟环境) 3.conda create -n zoe python=3.7 (zoe是自己取得名字) 注意:带宽会影响下载速度

pat 1028

1028 List Sorting (25分)   Excel can sort records according to any column. Now you are supposed to imitate this function. Input Specification: Each input file contains one test case. For each case, the first line contains two integers N (≤100000) an

数据结构基础代码实现(C++版)(一)

基础算法 目录基础算法交换冒泡排序选择排序顺序查找递归的折半查找递归排列组合 交换 /*  * author:起风了_Zoe  * date:2020.03.30  */ #include <iostream> #define SWAP(x,y,t) ((t)=(x),(x)=(y),(y)=(t)) // 宏函数 using namespace std; void swap_value(int x, int y);

1028 List Sorting (25point(s))

首先,先贴柳神的博客 https://www.liuchuo.net/ 这是地址 想要刷好PTA,强烈推荐柳神的博客,和算法笔记 题目原题 Excel can sort records according to any column. Now you are supposed to imitate this function. Input Specification: Each input file contains one test case