上一页 1 ··· 25 26 27 28 29
摘要: 1 typedef struct LNode{ 2 ElementType data; 3 struct LNode next; 4 }LNode, *LinkList; 5 6 LNode* L = (LNode*)malloc(sizeof(LNode)); 7 L -> next = null 阅读全文
posted @ 2021-05-28 11:17 蘑菇王国大聪明 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 1.假设有一个链表p,新建一个节点LNode * q; p-next = q和q = p->next 的区别: 假如q没有赋值,前者是将p的后一个节点指向q,相当于把p和原来的下一个节点 断开! 指向了q 后者是,给p的下一个节点起一个名字,方便操作。 2.删除指定节点操作中,假如删除最后一个节点, 阅读全文
posted @ 2021-05-28 09:56 蘑菇王国大聪明 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 更新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 阅读全文
posted @ 2021-05-27 15:07 蘑菇王国大聪明 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2021-05-27 14:34 蘑菇王国大聪明 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2021-05-27 13:55 蘑菇王国大聪明 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 笔记 class complex{ public: complex (double r = 0, double i = 0) : re(r), im(i) {} private: double re, im; } 阅读全文
posted @ 2021-05-27 13:52 蘑菇王国大聪明 阅读(57) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29