登录
首页 » c++ » 人工智能模拟月球登陆器

人工智能模拟月球登陆器

于 2022-04-16 发布 文件大小:23.26 MB
0 116
下载积分: 2 下载次数: 1

代码说明:

上次上传的月球登陆游戏非常难玩,于是用人工智能让电脑自己玩,找出最佳登陆路径。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • IR-decoding-digital-display
    IR decoding digital display
    2013-10-06 00:06:17下载
    积分:1
  • cPPlearnning
    学习C++的入门教程,希望对于正在学习的你有帮助,大家一起分享(Learning C++ introductory tutorial, hope for the help you are learning to share with everyone)
    2011-11-04 09:39:04下载
    积分:1
  • StartStopProcess
    这是一个用C#编写的停止和启动进程的程序,适合初学者使用。(This is a program which can start and stop the process.It is suited to the person who attach it for a short time.)
    2015-06-21 21:10:34下载
    积分:1
  • Backgammon
    五子连珠的VC源码,简单有趣 (Five or VC source, easy and fun )
    2013-07-20 17:54:18下载
    积分:1
  • distributed power system .zip
    MATLAB分布式电力系统状态估计完整程序.用于分布式光伏电站并网(MATLAB distributed power system state estimation complete program for distributed photovoltaic power station grid connected)
    2020-11-04 19:49:52下载
    积分:1
  • DesSecurity
    C# DES 对称加密,通过向量和密钥控制加密内容,可加密,解密(C# DES symmetric encryption, and key vector control through the encrypted content can be encrypted and decrypted)
    2011-01-14 17:50:21下载
    积分:1
  • wpf滑动效果 实例源码
    鼠标拖动时 控件滑动 截图: 核心代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Navigation;using System.Windows.Shapes;using System.Windows.Media.Animation;namespace FlashPrac2{ /// /// MainWindow.xaml 的交互逻辑 /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } /// /// 完成缓冲效果 /// /// 起始位置 /// 目标位置 /// 加速加速度 /// 减速加速度 /// 持续时间 private void DoMove(DependencyProperty dp, double to, double ar, double dr, double duration) { DoubleAnimation doubleAnimation = new DoubleAnimation();//创建双精度动画对象 doubleAnimation.To = to;//设置动画的结束值 doubleAnimation.Duration = TimeSpan.FromSeconds(duration);//设置动画时间线长度 doubleAnimation.AccelerationRatio = ar;//动画加速 doubleAnimation.DecelerationRatio = dr;//动画减速 doubleAnimation.FillBehavior = FillBehavior.HoldEnd;//设置动画完成后执行的操作 grdTransfer.BeginAnimation(dp, doubleAnimation);//设置动画应用的属性并启动动画 } private double pressedX; /// /// 点击鼠标,记录鼠标单击的位置 /// /// /// private void grdTest_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e) { ////获得鼠标点击的X坐标 pressedX = e.GetPosition(cvsGround).X; } ////鼠标释放时的操作 private void grdTest_PreviewMouseLeftButtonUp(object sender, MouseButtonEventArgs e) { double transferLeft = Convert.ToDouble(grdTransfer.GetValue(Canvas.LeftProperty)); //btn1.Content = transferLeft.ToString(); if (transferLeft > 0) { transferLeft = 0; } if (this.Width - transferLeft > cvsGround.Width) { transferLeft = this.Width - cvsGround.Width; } ////获得鼠标释放时的位置 double releasedX = e.GetPosition(cvsGround).X; ////获得距离间隔 double interval = releasedX - pressedX; pressedX = 0; ////计算出传送带要的目标位置 double to = transferLeft interval; ////移动 //btn1.Content = transferLeft.ToString() " " to.ToString(); // btn1.Content = transferLeft.ToString() " " to.ToString(); DoMove(Canvas.LeftProperty, to, 0.1, 0.5, 0.5); } }}
    2014-06-24下载
    积分:1
  • algorithm
    说明:  可以计算两个小于500位整数的乘法,多项式求m次阶的系数和,大数阶乘。(Can compute the two less than 500-bit integer multiplication,M second-order polynomial coefficients of demand and, factorial of large numbers .)
    2010-03-29 21:18:06下载
    积分:1
  • 4.3_uc_gui
    4.3寸 LCD显示 STM32 代码 采用uCOS-II方式(4.3-inch LCD display STM32 code)
    2013-11-29 13:12:43下载
    积分:1
  • Cloud_and_IoT_Introduction
    说明:  ST Cloud_and_IoT_Introduction
    2020-06-16 00:00:06下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载