码迷,mamicode.com
首页 >  
搜索关键字:int    ( 143001个结果
【navicat112_premium】navicat112_premium数据库连接工具安装过程
此工具及其方便,可以连接mysql、oracle、sqlserver登数据库。。。 1.下载安装包Navicat Premium_11.2.7简体中文版.rar 下载地址:http://qiaoliqiang.cn/fileDown/navicate_premium.zip 2.解压之后内容如下: ...
分类:数据库   时间:2021-06-10 18:15:31    阅读次数:0
第一章 介绍函数式编程
(目录) 前言 参考链接: 一、什么是函数式编程 定义: 函数式编程(FP)是一种编程范式,强调函数的同时避免状态突变的编程风格. 1、函数作为第一类值 简单讲,就是将函数当作值处理. Func<int, int> triple = x => x * 3; var range = Enumerabl ...
分类:其他好文   时间:2021-06-10 18:11:38    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-10 18:07:14    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-10 18:03:42    阅读次数:0
java数组03三种初始化及内存分析
package com.Leo.array;public class ArrayDemo02 { public static void main(String[] args) { //静态初始化:创建 + 赋值 int[] a = {1,2,3,4,5,6,7,8}; System.out.prin ...
分类:编程语言   时间:2021-06-10 18:01:59    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 2 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-10 17:57:57    阅读次数:0
tcpdump for container
kubectl -n kube-system exec -it $pod -- ovs-vsctl list-ports br-int ovnip=`ip a | grep "scope global ovn4nfv0" |awk '{match($0, /.+inet\s([^ /]*)/, a) ...
分类:其他好文   时间:2021-06-10 17:55:40    阅读次数:0
数据结构-Dijkstra-最短路长度以及最短路节点
Dijkstra算法采用的是一种贪心的策略,声明一个数组dist来保存源点到各个顶点的最短距离和一个保存已经找到了最短路径的顶点的集合:T,初始时,原点 s 的路径权重被赋为 0 (dist[s] = 0)。若对于顶点 s 存在能直接到达的边(s,m),则把dist[m]设为w(s, m),同时把所 ...
分类:其他好文   时间:2021-06-10 17:55:03    阅读次数:0
类型转换
类型转换 public class Demo02 { public static void main(String[] args) { //强制转换 (类型)变量名 高-->低 int i = 128; byte b = (byte) i;//内存溢出 System.out.println(i); ...
分类:其他好文   时间:2021-06-10 17:53:43    阅读次数:0
计算几何三角形模板(持续更新)
三角形模板 const int N = 1e5 + 50; const ld PI = acos(-1.0); const ld eps=1e-8; int sgn(ld x) { if(fabs(x)<eps)return 0; return x<0?-1:1; } struct Point { ...
分类:其他好文   时间:2021-06-10 17:53:30    阅读次数:0
143001条   上一页 1 ... 31 32 33 34 35 ... 14301 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!