-
UCI数据集
UCI数据集
- 2020-12-02下载
- 积分:1
-
定位技术
定位技术定位技术定位技术定位技术定位技术定位技术定位技术定位技术定位技术定位技术定位技术定位技术
- 2022-04-21 03:47:33下载
- 积分:1
-
ImageFilterForAndroid-master(2)
多种android端图像滤镜处理,lomo,黑白,高斯等(The android end image filter processing, lomo, black and white, Gaussian and other)
- 2013-03-13 18:30:45下载
- 积分:1
-
SKEY
动态口令认证,skey协议,实现身份鉴别过程。(Dynamic password authentication, skey protocol, identity authentication process.)
- 2020-07-02 20:20:02下载
- 积分:1
-
Manning.Unlocking-Android.2008
android开发经典书籍,在京东上的书籍要卖232元(Manning.Unlocking Android.2008)
- 2012-03-27 10:13:52下载
- 积分:1
-
11.wifi遥控小车实验
11.wifi遥控小车实验
- 2020-12-02下载
- 积分:1
-
基于UDP的手机与电脑互相通信实例
说明: 本例为java代码,在android系统实现手机与电脑通过udp方式通讯(This example is java code, in Android system to achieve mobile phone and computer through UDP communication)
- 2020-06-25 12:20:02下载
- 积分:1
-
阿里云云原生架构白皮书.pdf
【实例简介】阿里云架构白皮书
- 2021-09-04 00:30:58下载
- 积分:1
-
android SeeJoPlay播放器 实例源码下载
android SeeJoPlay播放器 实例源码下载
- 2014-04-02下载
- 积分:1
-
The Shortest Circuit of a Non-Oriented Graph
package Extend_Floyd;
import java.io.*;
import java.util.Scanner;
public class Extend_Floyd {
/**
* @param args
*/
static final int INF=666666666;//注意INF可能溢出,慎用!
static final int MAXN=100+10;
static int nnum,mnum,cnt,minn;
static int path[],fa[][],cur[][],dist[][];
static void init()
{
path = new int[MAXN+1];
fa = new int[MAXN+1][MAXN+1];
cur = new int[MAXN+1][MAXN+1];
dist = new int[MAXN+1][MAXN+1];
for(int i=1;i
- 2022-09-18 01:15:03下载
- 积分:1