上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 41 下一页
摘要: 4.1. Boolean Expressions Today’s digital circuits are built so that they can perform very fast operations over data that is encoded in binary. The und 阅读全文
posted @ 2020-12-11 08:50 Geeksongs 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 3.1. RAM Memory In this document you will learn how the RAM in a computer system is used to store all the data and coded required to execute a program 阅读全文
posted @ 2020-12-11 08:43 Geeksongs 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 本课程内容来自于悉尼大学ELEC1601:introduction to the computer system 2.1. Binary Logic The digital electronic circuits are capable of manipulating signals in two 阅读全文
posted @ 2020-12-10 20:12 Geeksongs 阅读(846) 评论(0) 推荐(0) 编辑
摘要: 下面是AVR架构下的汇编语言常用指令集,英语原版看起来会更容易理解,如下所示: 上面是常用的指令,全部指令集的使用方法可以在之类找到:http://ww1.microchip.com/downloads/en/devicedoc/atmel-0856-avr-instruction-set-manu 阅读全文
posted @ 2020-12-06 13:31 Geeksongs 阅读(1034) 评论(0) 推荐(0) 编辑
摘要: 笔者因为在工作当中需要使用Docker来将机器学习和深度学习的算法部署到云端,因此开始Docker的学习。机器学习当中常常使用Docker来进行环境的部署,而深度学习则可以采用NVdocker,都是很不错的选择。 一.拉取镜像到本地 一般情况下我们都在docker.hub这个网站下拉取(pull)镜 阅读全文
posted @ 2020-09-20 13:12 Geeksongs 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 把我的代码进行全部按照顺序复制粘贴到你的ubuntu系统上即可,安装成功了别忘记了点击下面的“推荐”哟! 更新ubuntu的apt源索引 sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo apt-get install \ apt-transport-http 阅读全文
posted @ 2020-09-20 09:08 Geeksongs 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 这个算法中文名为k均值聚类算法,首先我们在二维的特殊条件下讨论其实现的过程,方便大家理解。 第一步.随机生成质心 由于这是一个无监督学习的算法,因此我们首先在一个二维的坐标轴下随机给定一堆点,并随即给定两个质心,我们这个算法的目的就是将这一堆点根据它们自身的坐标特征分为两类,因此选取了两个质心,什么 阅读全文
posted @ 2020-09-13 09:24 Geeksongs 阅读(1481) 评论(2) 推荐(0) 编辑
摘要: 题目: 解题思路:首先对两个链表进行遍历,然后将数字转化为字符串加起来 然后对整个字符串进行逆序,在逆序的同时赋值给新创建的链表 代码如下: # Definition for singly-linked list. # class ListNode: # def __init__(self, x): 阅读全文
posted @ 2020-09-05 21:50 Geeksongs 阅读(1809) 评论(0) 推荐(0) 编辑
摘要: 我的方法很简单,使用str函数首先将int转化为str,然后将str放到一个栈当中进行栈的反转,最后对该栈进行处理,比如去掉0或者添加数字前面的"-"号,处理完之后将栈中的字符串拼接起来得到返回值即可,代码如下: class Solution: def reverse(self, x: int) - 阅读全文
posted @ 2020-09-05 21:17 Geeksongs 阅读(734) 评论(0) 推荐(0) 编辑
摘要: 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0 阅读全文
posted @ 2020-09-05 21:08 Geeksongs 阅读(729) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 41 下一页

Coded by Geeksongs on Linux

All rights reserved, no one is allowed to pirate or use the document for other purposes.