码迷,mamicode.com
首页 >  
搜索关键字:computer opencart 自适应主题模板 abc-0084    ( 3098个结果
用JS实现人脑和计算机交互,这个是真的牛!
使用 Leap Motion 控制 Sphero 这是我第一次使用 JavaScript 控制浏览器之外的东西,我立刻被吸引住了! 从那时起,我花了很多个人时间用于设计交互式项目的原型。每一次我都会尝试挑战自己,以便学习到新的东西。 在尝试了几种不同的设备之后,我一直在寻找下一个挑战,于是就有了我的 ...
分类:Web程序   时间:2020-05-09 17:26:30    阅读次数:85
Binary tree
"Abstract:" In computer science, a binary tree is a tree data structure in which each node has at most two children, which are referred to as the left ...
分类:其他好文   时间:2020-05-08 18:11:11    阅读次数:61
Reentrancy (computing)
Reentrancy (computing) In computing, a computer program or subroutine is called reentrant if multiple invocations can safely run concurrently. The con ...
分类:其他好文   时间:2020-05-07 13:30:00    阅读次数:85
Reentrant mutex可重入互斥锁
Reentrant mutex In computer science, the reentrant mutex (recursive mutex, recursive lock) is a particular type of mutual exclusion (mutex) device tha ...
分类:其他好文   时间:2020-05-07 13:11:49    阅读次数:71
XML 教程——检视阅读
XML 教程——检视阅读 参考 XML 教程——菜鸟——蓝本 XML 教程——w3cschool XML 教程——易百 基本 XML 简介 XML 指可扩展标记语言(eXtensible Markup Language)。 XML 被设计用来传输和存储数据。HTML 被设计用来显示数据。 什么是 X ...
分类:其他好文   时间:2020-05-06 10:31:54    阅读次数:69
1.1 The background of the emergence of computer networks
1. Popularization and diversification of computers 2. From independent mode to network interconnection mode WAN(Wide Area Network) : a remote Network ...
分类:Web程序   时间:2020-05-05 17:42:35    阅读次数:79
与电脑猜拳
1 player = int(input("请输入您要出的拳:石头(1)/剪刀(2)/布(3):")) 2 computer = 1 3 print("玩家选择的是%d-电脑选择的是%d" % (player, computer)) 4 if (player == 1 and computer == ...
分类:其他好文   时间:2020-05-04 13:22:38    阅读次数:57
电脑随机出拳
1 import random 2 player = int(input("请输入您要出的拳:石头(1)/剪刀(2)/布(3):")) 3 computer = random.randint(1, 3) 4 print("玩家选择的是%d-电脑选择的是%d" % (player, computer) ...
分类:其他好文   时间:2020-05-04 13:13:43    阅读次数:83
Introduction to operating systems----《Computer operating system》
The goal of the operating system The objectives of the operating system are related to the application environment. For example, the OS used in the qu ...
分类:其他好文   时间:2020-05-03 17:04:59    阅读次数:84
POJ1236 Network of Schools(强连通分量)
A number of schools are connected to a computer network. Agreements have been developed among those schools: each school maintains a list of schools t ...
分类:Web程序   时间:2020-05-03 12:23:25    阅读次数:70
3098条   上一页 1 ... 10 11 12 13 14 ... 310 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!