《模拟城市》(SimCity)是美国艺电出品的一个城市建造(City-building game)的电子游戏,首部作品发售于1989年,是Maxis的第一个产品。最初发行的平台为DOS,之后又陆续推出了麦金塔、Windows与超级任天堂等平台上的版本。当前该系列的版权所有者以及发行商为美国艺电(EA)。 2008年1月10日,EA以GPL协议开放原始版本,更名为Micropolis,特别针对OLPC。 在2013年EA/Maxis发布了全新的《模拟城市》系列游戏,将游戏名称定为与1989年相同的名称《模拟城市》,并且通过Origin平台才可以进行游戏。在Maxis被问道这款游戏是否叫做“模拟城市5”的时候,Maxis说,这款游戏不是《模拟城市4》的迭代,而是一款全新的游戏,我们叫他《模拟城市》。国内外的《模拟城市》粉丝们将它叫做《模拟城市(2013)》或者“SC(2013)”。 为了相互区别Maxis的第一部和第五部作品,本词条用游戏发布时间分别命名为《模拟城市(1989)》和《模拟城市(2013)》。EA/Maxis官方目前分别称之为:Micropolis和SimCity(港台译名:模拟城市)。
上传时间: 2016-10-22
上传用户:86kl
Origin 插件,可以迅速找到图线的交点,并给出交点值。
标签: OScriptTool求交点工具OScriptTool
上传时间: 2017-11-29
上传用户:wuguofang
Origin pro8.0汉化包适用于Origin pro使用。Origin pro8.0是公认的最好用的函数绘图分析软件,灵活、快速、易学,官方只有英文版。脚本之家为你提供的是Origin8汉化包+Origin8破解文 件,帮助大家轻松使用Origin8.0破解版,需要的朋友快来下载使用吧! Origin8汉化包使用方法:
上传时间: 2018-01-15
上传用户:l790642628
#include <stdio.h> #include <stdlib.h> ///链式栈 typedef struct node { int data; struct node *next; }Node,*Linklist; Linklist Createlist() { Linklist p; Linklist h; int data1; scanf("%d",&data1); if(data1 != 0) { h = (Node *)malloc(sizeof(Node)); h->data = data1; h->next = NULL; } else if(data1 == 0) return NULL; scanf("%d",&data1); while(data1 != 0) { p = (Node *)malloc(sizeof(Node)); p -> data = data1; p -> next = h; h = p; scanf("%d",&data1); } return h; } void Outputlist(Node *head) { Linklist p; p = head; while(p != NULL ) { printf("%d ",p->data); p = p->next; } printf("\n"); } void Freelist(Node *head) { Node *p; Node *q = NULL; p = head; while(p != NULL) { q = p; p = p->next; free(q); } } int main() { Node *head; head = Createlist(); Outputlist(head); Freelist(head); return 0; } 2.顺序栈 [cpp] view plain copy #include <iostream> #include <stdio.h> #include <stdlib.h> ///顺序栈 #define MaxSize 100 using namespace std; typedef
上传时间: 2018-05-09
上传用户:123456..
STC单片机资料 请用逗号分隔标签 * 资料描述:
上传时间: 2019-12-02
上传用户:hjd0303
This thesis is about wireless communication in shared radio spectrum. Its Origin and motivation is ideally represented by the two quotations from above. In this thesis, the support of Quality-of-Service (QoS) in cognitive radio networks is analyzed. New approaches to distributed coordination of cognitive radios are developed in different spectrum sharing scenarios. The Wireless Local Area Network (WLAN) 802.11 proto- col of the Institute of Electrical and Electronics Engineers (IEEE) (IEEE, 2003) with its enhancement for QoS support (IEEE, 2005d) is taken as basis. The Medium Access Control (MAC) of 801.11(e) is modified to realize flexible and dynamic spectrum assignment within a liberalized regulation framework.
标签: Quality-of-Service Distributed Support
上传时间: 2020-05-27
上传用户:shancjb
OriginLab 公司研发的专业制图和数据分析软件 Origin 和 OriginPro,是公认的简单易学、操作灵活、功能强大的科学绘图与数据分析软件。
上传时间: 2013-06-03
上传用户:eeworm