打开OEM-sql监视页面,出现如下报错:java.sql.SQLException:ORA-31011:XML语法分析失败ORA-19202:XML处理LPX-00225:结束元素标记"sql"与起始元素标记"action"不匹配Erroratline46376时出错ORA-06512:在"SYS.DBMS_SQLTUNE",line1
分类:
数据库 时间:
2020-07-17 16:27:27
阅读次数:
106
并查集 ##题目大意 给出每个人名下的房产和家庭关系,求出每个家庭的总人数即人均房产数和房产面积。第一行输出家庭个数(所有有亲属关系的人都属于同一个家庭)。随后按下列格式输出每个家庭的信息:家庭成员的最小编号 家庭人口数 人均房产套数 人均房产面积。其中人均值要求保留小数点后3位。家庭信息首先按人均 ...
分类:
其他好文 时间:
2020-07-17 16:03:28
阅读次数:
69
/* Name: Copyright: Author: Mudrobot Date: <DATETIME> Description: */ #include<bits/stdc++.h> #define gc() getchar()//caution!!! #define LL long long ...
分类:
其他好文 时间:
2020-07-17 14:04:00
阅读次数:
107
Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two n ...
分类:
其他好文 时间:
2020-07-17 13:33:50
阅读次数:
46
本题考察的是回溯算法,可以使用DFS解决问题。 C++版本 #include <iostream> #include <vector> using namespace std; int getDigitSum(int num){ int sum = 0; while(num > 0){ sum += ...
分类:
其他好文 时间:
2020-07-17 11:28:13
阅读次数:
48
利用二分图没有奇环的性质 DFS: class Solution { private: static constexpr int UNCOLORED = 0; static constexpr int RED = 1; static constexpr int GREEN = 2; vector<i ...
分类:
其他好文 时间:
2020-07-16 21:49:52
阅读次数:
71
这个例子是将vector里面的重复元素去掉并排序,先将vector转成set 然后set转成vector #include<set> #include<vector> #include<iostream> using namespace std; int main() { vector<int> v ...
分类:
编程语言 时间:
2020-07-16 21:30:14
阅读次数:
160
最大值优先级队列、最小值优先级队列 优先级队列适配器 STL priority_queue 用来开发一些特殊的应用 priority_queue<int, deque> pq; priority_queue<int, vector>pq; pq.empty() pq.size() pq.top() ...
分类:
其他好文 时间:
2020-07-16 18:13:43
阅读次数:
57
链接:https://leetcode-cn.com/problems/subsets-ii/ 代码 class Solution { public: vector<vector<int>> ans; vector<int> path; vector<vector<int>> subsetsWith ...
分类:
其他好文 时间:
2020-07-16 00:27:10
阅读次数:
75
1,什么是SVG?SVG 指可伸缩矢量图形 (Scalable Vector Graphics)SVG 用于定义用于网络的基于矢量的图形SVG 使用 XML 格式定义图形SVG 图像在放大或改变尺寸的情况下其图形质量不会有损失SVG 是万维网联盟的标准 2,SVG 的优势 与其他图像格式相比(比如 ...
分类:
Web程序 时间:
2020-07-15 23:44:58
阅读次数:
97