CREATE TABLESPACE DATA_CENTER_DATA DATAFILE '/opt/oracle/oradata/mesdb/data_center_data.dbf' SIZE 100M AUTOEXTEND ON NEXT 200M MAXSIZE UNLIMITED LOGGI ...
分类:
其他好文 时间:
2021-03-17 14:04:19
阅读次数:
0
删除原来的版本 rm -f /usr/bin/php 引用你想要的版本 ln -sf /www/server/php/74/bin/php /usr/bin/php ln命令用来为文件创建连接,连接类型分为硬连接和符号连接两种,默认的连接类型是硬连接。如果要创建符号连接必须使用"-s"选项。注意:符 ...
分类:
Web程序 时间:
2021-03-16 14:09:10
阅读次数:
0
仅供自己学习 思路: 可以直接把0~n-1的位置的元素加入到s后面,然后再把0~n-1的元素删除即可。分别调用append,erase函数 代码: 1 class Solution { 2 public: 3 string reverseLeftWords(string s, int n) { 4 ...
分类:
其他好文 时间:
2021-03-16 14:08:17
阅读次数:
0
代码 //base64编码 String a = new String(base64.encode(text.getBytes("UTF-8"))); String b = new String(Base64.encodeBase64(text.getBytes("UTF-8"))); String ...
分类:
Web程序 时间:
2021-03-16 14:04:57
阅读次数:
0
首先,在说这个之前,我们先把event loop再复习一遍: JS主线程不断的循环往复的从任务队列中读取任务,执行任务,其中运行机制称为事件循环(event loop).那么提到这里,在高层次上,JavaScript中有microtasks和macrotasks,它们是异步任务的一种类型.Micro ...
分类:
其他好文 时间:
2021-03-16 14:03:37
阅读次数:
0
界面 <template> <div align="center" > <component :is='modelUrl' ref='child' :data='data' ></component> </div> </template> 定义 data() { return { modelUrl: ...
分类:
其他好文 时间:
2021-03-16 14:03:20
阅读次数:
0
输入两个链表,找出它们的第一个公共节点。 如下面的两个链表: /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), n ...
分类:
其他好文 时间:
2021-03-16 13:39:17
阅读次数:
0
一个在90末尾,00开头中间的00后一枚,对这种比较喜欢感兴趣,啥也不会,就是随便自己学学,大佬勿喷,大神求带! 1 <style> 2 div { 3 margin: 400px auto; 4 font-size: 40px; 5 text-align: center; 6 } 7 p { 8 ...
分类:
其他好文 时间:
2021-03-15 11:24:09
阅读次数:
0
错解 class Solution: def reverseWords(self, s: str) -> str: a=[] s=s.split() for i in s: if i!='': left=0 right=len(i)-1 while left <right: i[left],i[ri ...
分类:
其他好文 时间:
2021-03-15 11:18:18
阅读次数:
0
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> PII; #define ls l,mid,rt<<1 #define rs mid+1,r,rt<<1|1 const ...
分类:
其他好文 时间:
2021-03-15 11:08:22
阅读次数:
0