ICode9

精准搜索请尝试: 精确搜索
  • 迷宫问题(递归)2021-12-14 20:33:31

    1 #define _CRT_SECURE_NO_WARNINGS 2 #define N 5 3 #include <stdio.h> 4 #include <stdlib.h> 5 6 typedef struct coordinate 7 { 8 int x; 9 int y; 10 }COOR; 11 12 void Show();//打印地图 13 bool Find(COOR s, COOR dir);//寻路 14 15 int

  • 数学建模(3)-基于matlab的受轴弯剪的梁单元的结构求解-有限元-FEM2021-11-14 00:00:50

    目录 1、此文是基于matlab的受轴弯剪的梁单元的结构求解,代码如下: 2、生成的结果 :​ 3、视频资料见链接: 1、此文是基于matlab的受轴弯剪的梁单元的结构求解,代码如下: % 基于matlab的受轴弯剪的梁单元的结构求解; % 输入量为:节点数目,坐标; 单元节点编号,自由度编号; 已知力,位移; 未知

  • Postgres-XC2021-04-05 22:00:06

    Postgres-XC 是读写可伸缩的同步多主 PostgreSQL 集群。 特性: 读/写 可伸缩 对称 (多主,同步) 集群 事物管理和一致性元组可视化 集群节点之间的并行事物执行 集群原理初级介绍 1、GTM (Global Transaction Manager) 2、Coordinator XC VS HS 个人理解,有点类似redis cluster

  • 纪念第一次AC的dfs题2021-02-03 13:33:07

    poj 2488 #include <stdio.h> #include <string.h> int n, p, q, flag; int a[8] = { -1,1,-2,2,-2,2,-1,1 };//先下后上,因为从(1,1)开始,先下后上能尽可能避免超过限值,进而达到尽量先左后右的目的。 int b[8] = { -2,-2,-1,-1,1,1,2,2 }; int book[10][10]; typedef struct {

  • C++05模板2020-11-21 10:02:55

    C++模板 友元函数 关键字:friend 友元全局函数:将全局函数声明为友元函数就是友元全局函数,可以访问到私有数据成员和私有成员函数。friend void printTime(Time &t); #include<iostream>` `using namespace std;` `class Time{` `friend void printTime(Time &t);` `public:` `T

  • 算法——Coin-collecting by robot2020-04-07 19:04:04

    题目描述 Several coins are placed in cells of an n×m board. A robot, located in the upper left cell of the board, needs to collect as many of the coins as possible and bring them to the bottom right cell. On each step, the robot can move either one cel

  • Build Post Office II2019-12-21 22:56:08

    Description Given a 2D grid, each cell is either a wall 2, an house 1 or empty 0 (the number zero, one, two), find a place to build a post office so that the sum of the distance from the post office to all the houses is smallest. Return the smallest

  • 从坐标文件mdb中生成图形_批量2019-09-27 09:56:07

    # -*-coding:utf-8-*- import arcpy import pyodbc import os   # 指定工作空间 arcpy.env.workspace = r"E:\shp"   # 2000坐标系 fc_2000 = "YDBP_2000.shp" cursor_2000 = arcpy.da.InsertCursor(fc_2000, ["FLOWSN", "XMMC", "KCID&

  • Faster RCNN 推理 从头写 java (五) Classifier网络输出对 ROIs过滤与修正2019-06-28 21:54:50

    一: 输入输出 输入: ROIs: RPN to ROI 流程的输出, shape 为 [300, 4] P_cls: Classifier网络的输出, shape为 [1, 32, 2] P_regr: Classifier网络的输出, shape为 [1, 32, 4] 输出: candidate_bboxes: 备选的boxes, shape为 [N, 4] N 表示未知 candidate_probs: 备选的b

  • C++离港篇2019-06-20 11:51:12

    4.0 C++语言引用 也就是变量的别名 基本数据类型的引用 #include <iostream>using namespace std;int main(void){ int a = 3; int &b = a; //引用必须初始化 b = 10; cout << a << endl; return 0;} 结构体类型的引用 #include <iostream>using namespace std;t

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有