Thank you "kali75" for your time.Although the links didn't work for me because the "link to the patch file" was dead.However after this I googled an.....
分类:
其他好文 时间:
2014-10-28 21:19:01
阅读次数:
215
1.查看dblinkselect owner,object_name from dba_objects where object_type='DATABASE LINK';或者select * from dba_db_links;2.创建dblink前提: 创建dblink的用户有对应的数据库权限 ...
分类:
数据库 时间:
2014-10-24 12:49:10
阅读次数:
183
每天一个JavaScript实例-提取所有链接并添加到页面末尾列表
window.onload = function(){
var links = document.getElementsByTagName("a");
//console.log(links);
var ul=document.createElement("ul");
for(var i = 0;i<links.length;i...
分类:
编程语言 时间:
2014-10-23 12:35:14
阅读次数:
182
Dancing Links (DLX)是Knuth为了解决精确覆盖问题而提出的算法,很多搜索问题可以转化位精确覆盖问题从而使用Dancing Links解决(效率会比DFS高很多,因为里面常常蕴涵着意想不到的剪枝)信息学竞赛中的DLX的问题类似网络流,只需建图+贴版即可参考文献:1、DLX的原理:K...
分类:
其他好文 时间:
2014-10-22 14:23:05
阅读次数:
226
今天花时间学习了下Dancing Links,其核心思想是降低在搜索中的范围,减少复杂。降低的方法就是将用链式结构构造的图中不需要的点去掉。如果回溯再恢复。
这个方法依赖的数据结构是用数组存储的十字链表L[NN],R[NN],U[NN],D[NN] 左右上下的链接
构造数据结构:
head,cnt,L[NN],R[NN],U[NN],D[NN],H[NN],COL[NN],S[NN]...
分类:
其他好文 时间:
2014-10-13 11:47:49
阅读次数:
204
题目链接
题意: 给出一个无向图,按顺序输出桥
思路:求出所有的桥,然后按顺序输出即可
代码:
#include
#include
#include
#include
#include
#include
using namespace std;
const int MAXN = 10005;
struct Edge{
int to, nex...
分类:
其他好文 时间:
2014-10-13 11:20:50
阅读次数:
155
本篇文章主要介绍storm的关键概念!(翻译摘取至徐明明博客)This page lists the main concepts of Storm and links to resources where you can find more information. The concepts dis...
分类:
其他好文 时间:
2014-10-12 23:35:39
阅读次数:
417
[root@localhost ~]# vim /etc/my.cnf[mysqld]datadir=/var/lib/mysqlsocket=/var/lib/mysql/mysql.sockuser=mysql# Disabling symbolic-links is recommended t...
分类:
其他好文 时间:
2014-10-05 16:32:38
阅读次数:
510
题意:一个n×m行的矩阵,每个格子可能是 0 或者1 现在让你选择 几列 使得 每一列 有且只有一个1.(精确覆盖模板题)解题思路:dancing links 模板关于dancing links 献上几篇必看论文 :http://par.buaa.edu.cn/acm-icpc/filepool/r...
分类:
其他好文 时间:
2014-10-04 20:19:07
阅读次数:
201
kunen.org home OpenGL nve uC links Building the GNU ARM Toolchain for Bare Metal This is a quick guide to building the GCC toolchain for the ARM architecture.? I wrote this to cleanup some other i...
分类:
其他好文 时间:
2014-10-04 20:12:17
阅读次数:
466