上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: docker run -d -p 8288:8080 --name DevOsbpmO1 -v /smartapp_attachment/DevOSmartAppFolder:/smartapp_attachment devosbpmoracle:1.0 ; 阅读全文
posted @ 2021-09-25 11:51 unicoe 阅读(37) 评论(0) 推荐(0) 编辑
摘要: drop directory mydata; /u01/app/oracle/oradata/xe /u01/app/oracle/oradata/xe/tmpdata create directory mydata as '/u01/app/oracle/oradata/xe/tmpdata'; 阅读全文
posted @ 2021-09-25 11:31 unicoe 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 使用PLSQL导出数据时,exp只有简单的两行提示,然后也不能导出信息 1、查看在cmd窗口中,能否在有exp的路径中,有效执行exp命令,如果不能,提示缺少dll文件 2、使用DirectXRepair39 修复工具 (参考(2条消息) 解决msvcr120.dll文件丢失问题(搞了半天,简直奔溃 阅读全文
posted @ 2021-09-25 01:28 unicoe 阅读(589) 评论(0) 推荐(0) 编辑
摘要: 网页分成三个部分: 结构 HTML 表现 CSS 行为 JS CSS CSS 层叠样式表 网页实际是一个多层结构,通过css可以分别为网页的每一个层来设置样式 总之一句话,css用来设置网页中元素的样式 一个样式的列表 层叠? 样式是分层的结构,一层压一层,俯视 1、行内样式 内联样式(不推荐使用) 阅读全文
posted @ 2021-07-29 18:16 unicoe 阅读(55) 评论(0) 推荐(0) 编辑
摘要: I read a lot of topics about this problem but most of them were having problem with some complex (at least for me) code; I have followed the oracle RO 阅读全文
posted @ 2021-05-12 19:18 unicoe 阅读(1236) 评论(0) 推荐(0) 编辑
摘要: 1549. 每件商品的最新订单 难度中等1 SQL架构 表: Customers + + + | Column Name | Type | + + + | customer_id | int | | name | varchar | + + + customer_id 是该表主键. 该表包含消费者的 阅读全文
posted @ 2021-02-22 09:35 unicoe 阅读(134) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/129366085 https://blog.csdn.net/v_xchen_v/article/details/53348333 mysql 更改密码:https://blog.csdn.net/muziljx/article/detai 阅读全文
posted @ 2020-08-25 00:01 unicoe 阅读(206) 评论(0) 推荐(0) 编辑
摘要: xgboost pip install xgboost # conda install -c anaconda py-xgboost conda 不好使,不懂 阅读全文
posted @ 2020-08-03 16:06 unicoe 阅读(897) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://blog.csdn.net/qq_37482202/article/details/82352870 阅读全文
posted @ 2019-12-09 16:28 unicoe 阅读(282) 评论(0) 推荐(0) 编辑
摘要: class Solution { public: int search(vector<int>& nums, int target) { if(nums.size() == 0) return -1; int low = 0, high = nums.size()-1, mid; while(low+1 < high) { mid = (high - low)/2 + low; if(nums[m 阅读全文
posted @ 2019-09-04 21:32 unicoe 阅读(493) 评论(0) 推荐(0) 编辑
摘要: "rsa":"usernamepassword"+lt_execution_id[0][0] 这里的usernamepassword,例如 17714xx123456,uesrname:17714xx,password:123456 阅读全文
posted @ 2019-08-28 18:12 unicoe 阅读(957) 评论(9) 推荐(0) 编辑
摘要: 安装步骤: 一:首先安装简版CodeBlocks sudo apt install codeblocks 二:把编译环境,C库、C++库和Boost库装好 sudo apt install build-essential 三:安装 CodeBlocks 的调试组件 Valgrind 用来探测内存泄露 阅读全文
posted @ 2019-07-22 21:20 unicoe 阅读(2782) 评论(0) 推荐(0) 编辑
摘要: 二叉树非递归后序遍历 阅读全文
posted @ 2019-07-16 16:28 unicoe 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 二叉树非递归中序遍历 阅读全文
posted @ 2019-07-16 16:14 unicoe 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 93. 平衡二叉树 给定一个二叉树,确定它是高度平衡的。对于这个问题,一棵高度平衡的二叉树的定义是:一棵二叉树中每个节点的两个子树的深度相差不会超过1。 给定一个二叉树,确定它是高度平衡的。对于这个问题,一棵高度平衡的二叉树的定义是:一棵二叉树中每个节点的两个子树的深度相差不会超过1。 给定一个二叉 阅读全文
posted @ 2019-07-15 20:50 unicoe 阅读(671) 评论(0) 推荐(0) 编辑
摘要: /** * Definition of TreeNode: * public class TreeNode { * public int val; * public TreeNode left, right; * public TreeNode(int val) { * this.val = val; * this.left ... 阅读全文
posted @ 2019-07-15 20:37 unicoe 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 模板: 阅读全文
posted @ 2019-07-15 18:57 unicoe 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字,例如,如果输入如下4 X 4矩阵: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 则依次打印出数字1,2,3,4,8,12,16,15,14,13,9,5,6,7,11,10. 输入一个矩阵,按照从外向里以 阅读全文
posted @ 2019-06-28 21:52 unicoe 阅读(176) 评论(0) 推荐(0) 编辑
摘要: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/linux-64/ 阅读全文
posted @ 2019-04-03 17:15 unicoe 阅读(11251) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/csdnJenny/article/details/81629824 阅读全文
posted @ 2019-04-02 16:44 unicoe 阅读(223) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页