码迷,mamicode.com
首页 >  
搜索关键字:graph coloring    ( 3748个结果
Pose-Graph Optimization vs Bundle Adjustment
Pose-Graph Optimization和Bundle Adjustment是Visual Odometry中两种重要的优化方式。Pose-Graph Optimization相机位置可以表示为一幅图像:“点”为相机位置,“边”为相机位置间的刚体运动。Cost function: 其中,ei....
分类:其他好文   时间:2016-01-25 21:00:17    阅读次数:1451
POJ2553 The Bottom of a Graph(强连通分量+缩点)
题目是问,一个有向图有多少个点v满足?w∈V:(v→w)?(w→v)。把图的强连通分量缩点,那么答案显然就是所有出度为0的点。用Tarjan找强连通分量: 1 #include 2 #include 3 #include 4 using namespace std; 5 #define MAXN 5...
分类:其他好文   时间:2016-01-25 11:29:33    阅读次数:174
POSIX字符类型
[:alnum:] 字母与数字[:alpha:] 字母[:blank:] 空格与制表符[:cntrl:] 控制字符[:digit:] 数字[:graph:] 可打印的与可见的(不包括空格)字符[:lower:] 小写字符[:print:] 可打印的字符...
分类:其他好文   时间:2016-01-23 21:16:42    阅读次数:117
经典的图论算法,C++描述
#include // 常量定义:const int maxV = 100 ;const double Inf = 1e100;// const int Inf=2000000000;// Graph类定义:template struct GraphMatrix { int ...
分类:编程语言   时间:2016-01-22 11:00:43    阅读次数:288
微信 新浪
//QQ URL public ActionResult QQLocation() { var response_type = "code"; string state = "1"; string url = string.Format("https://graph.qq.com/oauth2.0/...
分类:微信   时间:2016-01-20 19:12:56    阅读次数:297
C# vba 操作 Word
添加引用Microsoft Word *.0 Object LibraryMicrosoft Graph *.0 Object Library变量说明Object oMissing = System.Reflection.Missing.Value;object oEndOfDoc = "\\end...
分类:编程语言   时间:2016-01-18 20:25:51    阅读次数:523
南沙政府应急系统之GIS一张图(arcgis api for flex)讲解(十三)台风模块
大概的思路如下:从后台数据库获取台风的信息列表,展示在界面的表格里面;点击某条台风选项时候,会动态的在地图上展示台风的轨迹信息出来,点击某个时刻的台风轨迹时候,会弹出该时刻的台风详情气泡窗口来展示; 具体的技术:利用arcgis api的Geometry(Point、Polyline)、Graph...
分类:Windows程序   时间:2016-01-17 12:23:37    阅读次数:400
UVA11090 Going in Cycle!! (二分+SPFA推断有无负权)
IIUPC2006Problem G: Going in Cycle!!Input: standard inputOutput: standard outputYou are given a weighted directed graph withnvertices andmedges. Each ...
分类:其他好文   时间:2016-01-16 09:44:39    阅读次数:225
Route Between Two Nodes in Graph (java)
Given a directed graph, design an algorithm to find out whether there is a route between two nodes.ExampleGiven graph:A----->B----->C \ | \ | ...
分类:编程语言   时间:2016-01-16 07:35:41    阅读次数:210
python 图实现
#coding:utf-8__author__ = 'similarface'class Graph: def __init__(self,label,extra=None): #节点是类实例 self.name=label #而图是由类实例链接而成 ...
分类:编程语言   时间:2016-01-13 23:21:41    阅读次数:218
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!