摘要:
更新pip: python -m pip install --upgrade pip -i http://pypi.douban.com/simple --trusted-host pypi.douban.com conda创建和删除虚拟环境: conda create -n tf2 pip pyt 阅读全文
摘要:
1 #include <stdlib.h> 2 #define InitSize = 10; 3 4 typedef struct{ 5 int *data; 6 int length; 7 int maxSize; 8 }SeqList; 9 10 void InitList(SeqList &L 阅读全文
摘要:
1 void test(int x) 2 { 3 x = 1024; 4 cout << "test函数里x的值为" << x << endl; 5 } 6 7 int main() 8 { 9 int x = 1; 10 cout << "test函数开始前x的值为"<< x << endl; 1 阅读全文
摘要:
笔记 class complex{ public: complex (double r = 0, double i = 0) : re(r), im(i) {} private: double re, im; } 阅读全文