-
谷歌地球瓦片编码
谷歌地图的编码方式,Google earth地图图片编码的qrst算法,包括坐标编号转QRST编码以及QRST编码反转坐标编码的程序
- 2023-03-04 15:30:03下载
- 积分:1
-
VB数据库开发源代码,方便实用的数据库小软件
VB数据库开发源代码,方便实用的数据库小软件-VB source code database development, convenient and practical database small software
- 2022-03-30 14:49:19下载
- 积分:1
-
数据结构C++代码
数据结构C++代码-data structure C code
- 2023-05-01 20:25:02下载
- 积分:1
-
这是一个练习链表的扑克牌程序,可以自动发牌,比较大小。如果想和计算机对战,只需要稍微改动一下程序即可。...
这是一个练习链表的扑克牌程序,可以自动发牌,比较大小。如果想和计算机对战,只需要稍微改动一下程序即可。-This is a practice Chain cards procedures, it will automatically licensing, size comparison. If you want to, and computer war, only slightly modifying procedures.
- 2023-04-09 10:40:03下载
- 积分:1
-
简介:一个用PHP编写的,可以通过互联网控制和操作MySQL,通过phpMyAdmin可以完全对数据库进行操作,例如建立、复制、删除、导出、导入数据等。
简介:一个用PHP编写的,可以通过互联网控制和操作MySQL,通过phpMyAdmin可以完全对数据库进行操作,例如建立、复制、删除、导出、导入数据等。 -Introduction: A prepared using PHP, you can control and operation via the Internet MySQL, can be completely through the phpMyAdmin database operations, such as the establishment, copy, delete, export, import data.
- 2023-01-12 05:10:04下载
- 积分:1
-
本文档容括了C(C++)所有算法,分为数值算法、图论算法、背包算法、排序算法、高精度算法、树的遍历、进制转换、全排列和组合生成、查找算法、贪心、回溯法框架、DF...
本文档容括了C(C++)所有算法,分为数值算法、图论算法、背包算法、排序算法、高精度算法、树的遍历、进制转换、全排列和组合生成、查找算法、贪心、回溯法框架、DFS框架、BFS框架、数据结构相关算法。并有实例源码-This document, including the capacity C (C ) for all algorithms, divided into numerical algorithms, graph theory, algorithm, knapsack algorithm, sorting algorithm, high-precision algorithms, tree traversal, binary conversion, the whole arrangement and combination of generation, search algorithm, greedy , backtracking framework, DFS framework, BFS framework, data structure-correlation algorithm. And examples of source
- 2022-01-26 03:58:31下载
- 积分:1
-
又一个c++委托(函数对象)模板类的实现
又一个c++委托(函数对象)模板类的实现-Another c++ Commissioned (function object) template class realize
- 2022-03-25 08:07:25下载
- 积分:1
-
字典树算法,可以很方便的实现多叉树,而且查找很方便,是ACM算法设计中常用的数据结构...
字典树算法,可以很方便的实现多叉树,而且查找很方便,是ACM算法设计中常用的数据结构-Dictionary tree algorithm, can be very convenient multi-tree, and find very convenient is the design of ACM algorithms commonly used data structure
- 2022-03-18 17:01:48下载
- 积分:1
-
*Cube:最大子长方体问题 问题描述: 一个长,宽,高分别为m,n,p的长方体被分割成个m*n*p个小立方体。每个小立方体内有一个整数。 求所给长方体的最大子...
*Cube:最大子长方体问题 问题描述: 一个长,宽,高分别为m,n,p的长方体被分割成个m*n*p个小立方体。每个小立方体内有一个整数。 求所给长方体的最大子长方体。子长方体的大小由它所含所有整数之和确定。 */-* Cube : The biggest problem for rectangular Problem description : a long, wide and high respectively m, n, p rectangular cut into the 000 m* n* p small cube. Within each small cube is an integer. Seeking to have the largest rectangular son cuboid. The son of rectangular size it contained all integral and defined.* /
- 2023-05-13 14:30:02下载
- 积分:1
-
ORALCE JOB
存储过程sql:
create or replace procedure job_proc is
begin
--免费票状态修改 需修改ID
update O_2413 set attr_24131004="作废" where attr_24131004="已售";
--普通票状态修改 需修改ID
update O_2405 set attr_24051004="作废" where attr_24051004="已售";
--团体票状态修改 需修改ID
update O_2412 set attr_24121004="作废" where attr_24121004="已售";
end;
job的sql:
declare
job number;
begin
dbms_job.submit(job, "job_proc;", sysdate, "TRUNC(SYSDATE + 1)");
end;
- 2022-01-25 20:02:48下载
- 积分:1