自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

梵妮的博客

仅是学习笔记,个人所感,望大家指教。

  • 博客(9)
  • 资源 (7)
  • 收藏
  • 关注

翻译 JS高级第二天_贪吃蛇小案例

贪吃蛇 地图: 宽,高,背景颜色,因为小蛇和食物都是相对于地图显示的,这里小蛇和食物都是地图的子元素,随机位置显示,脱离文档流的,地图也需要脱离文档流–css需要设置:宽,高,背景颜色,脱标<!DOCTYPE html><html lang="en"><head> <meta charset=&

2018-08-03 22:06:49 280

转载 DOM学习第五天

DOM学习_第五天回顾上节内容为元素绑定事件的三种方式:对象.on事件类型=事件处理函数;//IE8不支持 对象.addEventListener(“没有on的事件类型”,事件处理函数,false);3.谷歌和火狐不支持 对象.attachEvent(“有on的事件类型”,事件处理函数);为元素解绑事件的三种方式:对象.on事件类型=null;对象.rem...

2018-08-03 22:06:34 185

转载 DOM学习第四天

DOM_第三天回顾上节内容阻止超链接默认的跳转事件: return false;获取元素的方式 根据id获取元素:document.getElementById("id属性的值"); 根据标签名字获取元素:document.getElementsByTagName("标签的名字");有的浏览

2018-08-03 22:06:17 123

转载 DOM学习第三天

DOM学习_第三天回顾上节内容阻止超链接默认的跳转事件: return false;获取元素的方式 根据id获取元素:document.getElementById("id属性的值"); 根据标签名字获取元素:document.getElementsByTagName("标签的名字"); 有的浏览器不支持, IE低版本的浏览器不支持,IE8以下的 根据name属性的值获取元素...

2018-08-03 22:06:02 208

转载 C++中蚁群优化算法的实现

#include <ctime>#include <cstdlib>#include <memory>#define frand() ((double)rand()/(double)RAND_MAX)#define MAXLONG (2147483647)double * pso_optimization(int s, int p, int d, ...

2018-07-18 16:51:11 885

转载 C++中反向传播算法的简单实现

#include <cmath>#include <ctime>#define frand() ((double)rand()/(double)RAND_MAX)#define sigmoid(x) (1/(1+exp(-(x))))#define sqr(x) ((x)*(x))bool ANN_Predict(int i_d, int h_d, int o...

2018-07-18 16:48:42 1230

转载 DOM学习第二天

JavaScript-WEB-API day_02_实例代码 01_禁用文本框<body><input type="button" value="禁用文本框" id="btn"/><input type="text" value=&

2018-07-17 15:43:28 116

转载 DOM学习第一天

JavaScript-WEB-APIday_01_实例代码01_点击按钮显示图片<body> <input type="button" value="显示图片" id="btn"/> <img src="" alt=&a

2018-07-17 15:41:52 186

转载 前端工程师学习笔记

前端工程师学习笔记

2018-06-19 16:09:53 309

V2V和V2I,VANET仿真实验

This repository provides a MATLAB simulaiton of VANET enviornment and rsults comparison in terms of throughput, packet drop ratio etc. More information can be reached at https://www.youtube.com/watch?v=2QeSYOgJo9s&t=32s

2018-11-09

用matlab实现仿真测试的源码

# CSMA-CA_for_Linear_VANET_Matlab This is a set of Matlab code for simulation of Linear VANET

2018-11-09

VANET仿真,用matlab实现仿真测试的源码

Originally reactive protocols were not design for the characteristic of highly mobility during route discovery. Due to dynamically modification to the VANET this changes very often due to breakdown which causing excessive broadcasting and flooding the entire network in order for new routes to be discovered. In additional, the initial of routing need some time and this latency can easily change everything. Due to these reasons, the typical reactive protocols, in their current format, do not totally appropriate for time critical applications such as cooperative collision avoidance (CCA). The Cooperative Collision Avoidance is an important class of safety applications in VANETs, which aims at offering earlier warning to drivers using vehicle-to-vehicle (V2V) communication [13]. Ad Hoc On Demand Distance Vector (AODV) is an reactive routing protocolwhich capable of both unicast and multicast. In AODV, like all reactive protocols,topology information is only transmitted by nodes on-demand. When source hassomething to send then initially it propagates RREQ message which is forwarded byintermediate node until destination is reached. A route reply message is unicastedback to the source if the receiver is either the node using the requested address, or ithas a valid route to the requested address. This repository provides a MATLAB simulaiton of VANET enviornment and rsults comparison in terms of throughput, packet drop ratio etc. More information can be reached at https://www.youtube.com/watch?v=2QeSYOgJo9s&t=32s

2018-11-09

Packt.Learn.Node.js.by.Building.6.Projects代码

Learn Node.js by Building 6 Projects Chapter 1, A Simple Web Server, will be very basic project. We're going to take the sample code from the Node.js website and expand on that. Chapter 2, A Basic Express Website, will be a basic Express website where we'll introduce the Express server. Chapter 3, The User Login System, will be a user login system using Passport.Chapter 4, The Node Blog System, will explain how to create a blog system using Node. Chapter 5, ChatIO, will help you create a community events application using Drywall. Chapter 6, E-Learning Systems, will help you create a simple e-learning portal.

2018-10-09

Node.js实战

本书的主要目的是教你学会如何创建和部署Node程序,重点是Web程序。本书中有相当一部 分内容集中介绍了Web程序框架Express和中间件框架Connect,主要是因为它们的用途和社区的 支持。你还会学到如何创建自动化测试,以及如何部署你的程序。 本书面向希望用Node.js创建响应式、可伸缩程序的有经验的Web程序开发人员。 因为Node.js程序是用JavaScript写的,所以需要你掌握这门语言。此外最好还要熟悉Windows、 OS X或Linux命令行。

2018-10-09

考试管理系统

本考试系统使用Microsoft公司的Access作为后台数据库,使用Microsoft公司的Visual Basic作为前台开发工具,使用ADO控件连接数据库。 本系统主要应用于英语、计算机等级考试等各类采用客观性题型的考试。包括四大模块——考试管理模块、题库管理模块、系统管理模块、登录模块。基本上实现了用户管理、考试管理、试卷管理、科目管理、成绩管理等功能。

2015-06-11

进销存管理系统

这是用Java语言编写的一个小型的企业管理系统

2015-06-11

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除