上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 344 下一页
摘要: python 栈实现 #!/usr/bin/env python3# -*- coding: utf-8 -*-"""Created on Tue Jun 26 22:32:27 2018@author: luogan"""class ... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(19) 评论(0) 推荐(0)
摘要: #!/usr/bin/env python3# -*- coding: utf-8 -*-"""Created on Tue Jun... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(34) 评论(0) 推荐(0)
摘要: #!/usr/bin/env python3# -*- coding: utf-8 -*-"""Created on Tue Jun... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(46) 评论(0) 推荐(0)
摘要: tf.sesson import tensorflow as tf #导入tensorflowa=tf.constant([[1,2]]) #定义了一个1×2的矩阵b=tf.constant([[2], ... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(23) 评论(0) 推荐(0)
摘要: tf.sesson import tensorflow as tf #导入tensorflowa=tf.constant([[1,2]]) #定义了一个1×2的矩阵b=tf.constant([[2], ... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(14) 评论(0) 推荐(0)
摘要: 文章1 文章2 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(18) 评论(0) 推荐(0)
摘要: 文章1 文章2 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(10) 评论(0) 推荐(0)
摘要: ubuntu 安装 opencv 3.4.1 文章1 文章2 ... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(17) 评论(0) 推荐(0)
摘要: ubuntu 安装 opencv 3.4.1 文章1 文章2 ... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(11) 评论(0) 推荐(0)
摘要: python 快速排序 a=[5,4,2,3,1]print(a)n=len(a)l=0r=n-1while True: if a[l]>a[r]: a[l],a[r]=a[r],a[l] r=r-1 i... 阅读全文
posted @ 2022-08-19 22:57 luoganttcc 阅读(12) 评论(0) 推荐(0)
上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 344 下一页