最简单的链表 1 typedef struct LNode *List; 2 struct LNode { 3 ElementType Data; 4 List Next; 5 }; 6 struct LNode L; 7 List PtrL; 8 9 //建立 10 11 //求表长 12 int ...
分类:
其他好文 时间:
2021-02-06 11:58:08
阅读次数:
0
aMarkdown学习 标题: 标题 三级标题 四级标题 字体 Hello,World! Hello,World! Hello,World! Hello,World! 引用 选择狂神说Java,走向人生巅 分割线 图片 超链接 点击跳转到Shelley博客 列表 A B C A B C 表格 名字性 ...
分类:
其他好文 时间:
2021-02-06 11:54:57
阅读次数:
0
一、Message定义Message类官方介绍如下:/** * Defines a message containing a description and arbitrary data object that can be * sent to a {@link Handler}. This obj ...
分类:
移动开发 时间:
2021-02-06 11:45:48
阅读次数:
0
有一个数组,把其中的元素按照每5个进行重新分组,新的数组放到放到大数组中,且看代码 let data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]; //数组分解 function arrayResolve(n, arr) { l ...
分类:
编程语言 时间:
2021-02-06 11:44:02
阅读次数:
0
# In[1] import pandas as pd import numpy as np import json import os import re # In[2] # !pwd os.chdir('./root/FAQ/') # In[2] with open('./data/all_da ...
分类:
其他好文 时间:
2021-02-05 10:56:21
阅读次数:
0
1,找到edge浏览器缓存目录,关闭浏览器删掉目录 C:\Users\(用户名)\AppData\Local\Microsoft\Edge\User Data\Default\Cache C:\Users\(用户名)\AppData\Local\Microsoft\Edge\User Data\De ...
分类:
其他好文 时间:
2021-02-05 10:54:48
阅读次数:
0
1. SQLServer服务器级别,创建登录用户(create login) USE HIS create login WN010 with password='123456', --must_change, --仅适用于SQL Server登录。如果包含此项,则SQLServer将在首次使用新登录 ...
分类:
数据库 时间:
2021-02-05 10:41:46
阅读次数:
0
mos 提供的用于通过dataguard 滚动升级数据库的脚本 步骤不列举了,主要谈一下重要的地方:开始前,需要确认主备库能够正常Switchover,主备同步正常。备库是先升级的,可以在安装11.2.0.4时选择“升级existing database”,在提示监听器时可选择Typical配置,然 ...
分类:
数据库 时间:
2021-02-05 10:40:53
阅读次数:
0
数据导出 首先是给一个导出的按钮事件 <el-button type="primary" @click="clickExport">导出</el-button> 表格给一个复选框进行当前的导出 <el-table :data="tableData" style="width: 100%" @sele ...
分类:
其他好文 时间:
2021-02-05 10:38:33
阅读次数:
0
NX二次开发-检查文件夹是否存在 1 bool CheckFolderExist(const string & strPath) 2 { 3 if (strPath.empty()) 4 { 5 return false; 6 } 7 8 WIN32_FIND_DATA wfd; 9 BOOL bV ...
分类:
其他好文 时间:
2021-02-05 10:36:27
阅读次数:
0