- 博客(47)
- 资源 (2)
- 收藏
- 关注
原创 ERROR 1051 (42S02): Unknown table
使用drop table删除数据表报错:ERROR 1051 (42S02): Unknown table…因为使用show tables命令查出来的结果不一定都是数据表,有的可能是视图,所以使用drop table 无法删除,需要使用drop view进行删除。
2020-09-16 10:27:11 7361
原创 批量修改图片的后缀名
方法:编写脚本1.在文件里新建记事本2.写入ren *.jpg *.gif每个*号前有一个空格。3.修改记事本的后缀名为bat4.点击运行记事本即可注释:ren:重命名.jpg:待修改的后缀名.gif:修改后的后缀名...
2019-07-09 20:22:27 4984
原创 MySql取消密码强度验证功能
修改MySql配置文件(my.cnf)一般情况下,MySql的配置文件 my.cnf 会在 /etc/ 目录下,如果没有,可以使用以下命令查找位置:find / -name my.cnf编辑配置文件:vi /etc/my.cnf在文件末尾添加以下内容:plugin-load=validate_password.sovalidate-password=OFF保存退出重启MySQ...
2019-05-22 18:27:24 1600
原创 org.apache.hadoop.hive.ql.exec.mr.MapredLocalTask - I/O error in redirector thread.
hive随笔
2023-03-11 23:38:06 483
原创 Caused by: java.lang.NoSuchMethodError: com.google.common.base.Preconditions.checkArgument(ZLjava/la
com.google.common.base.Preconditions.checkArgument
2022-12-26 18:12:13 765
原创 取子数组 Java
找出数组中奇数public class Test { public static void main(String[] args) { int[] arr = new int[10]; for (int i = 0; i < arr.length; i++) { arr[i] = (int)(Math.random()*20); } //增强型for,遍历数组 for (int tmp
2022-02-25 11:31:48 588
原创 PAT 到底有多二 Java
import java.util.Scanner;public class Main{ public static void main(String[] args) { Scanner input = new Scanner(System.in); String str = input.next(); char[] ch = str.toCharArray(); //设置计数,计算2的个数 double c.
2022-02-24 15:48:15 276
原创 PAT 正整数A+B Java
import java.util.Scanner;public class Main{ public static void main(String[] args) { Scanner input = new Scanner(System.in); //输入第一和第二个字符串 String str = input.next(); String str1 = input.nextLine(); //截取第二个字符.
2022-02-24 14:06:22 313
原创 PAT 一帮一 Java
import java.util.Scanner;public class Main{ public static void main(String[] args) { Scanner input = new Scanner(System.in); int N = input.nextInt(); //存储性别 int[] arr = new int[N]; //存储名字 String[] ..
2022-02-23 21:18:41 163
原创 PAT 考试座位号 Java
数据是用3个一维数组接收的,不过运行也会超时import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner input = new Scanner(System.in); int N = input.nextInt(); //准考证号 String[] str = new String[N];
2022-02-23 12:59:53 240
原创 PAT 考试座位号 Java
数据是二维数组接收的,不过运行会超时import java.util.Scanner;public class Main{ public static void main(String[] args) { Scanner input = new Scanner(System.in); int N = input.nextInt(); String[][] str = new String[N][3]; //键入数据
2022-02-23 12:56:01 267
原创 PAT 强迫症 Java
import java.util.Scanner;public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); //接收字符串 String str = sc.nextLine(); //如果年月合法 if(str.length() == 6) { System.out.println(str.substring(0,4)+"-"+st.
2022-02-18 20:53:06 182
原创 PAT 装睡 Java
package com.hang;import java.util.Scanner;public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); //数据行数控制 int N = sc.nextInt(); //接呼吸频率 int[] a = new int[N]; //接收脉搏频率 int[] b = new int[N]; //接受
2022-02-18 20:09:22 239
原创 java for循环语句的执行顺序
//例如for(int i = 0; i<10; i++){ System.out.println(i);}//简化代码for(A;B;C){ D;}//执行顺序为ABD-CBD-CBD-CBD-CBD-一直CBD执行下去,最后结束于B语句,A语句在循环中只执行一次。
2022-02-18 19:27:00 315
原创 PAT 个位数统计 Java
import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); // 接收字符串 String str = sc.next(); // 将字符串转换为字符数组 char[] ch = str.toCharArray(); // 统计每个个位数出现次数 int[] a = new int[
2022-02-17 16:53:28 250
原创 反向遍历单链表 C语言版
#include<stdio.h>#include<stdlib.h>typedef int ElemType;typedef struct LNode { ElemType data; //数据域 struct LNode *next; //指针域} LNode;//尾插法建立单链表LNode* List_TailInsert() { int x; LNode *L = (LNode*) malloc(sizeof(LNode)); //创建头结点,L为头
2021-04-13 15:42:31 566
原创 链式队列的基本操作 C语言版
#include<stdio.h>#include<stdlib.h>typedef int ElemType;typedef struct { //链式队列结点 ElemType data; //数据域 struct LinkNode *next;} LinkNode;typedef struct { LinkNode *front, *rear; //队头和队尾指针} LinkQueue;//初始化LinkQueue* InitQueue(LinkQu
2021-04-04 15:18:15 365
原创 循环队列的基本操作 C语言版
#include <stdio.h>#include <stdlib.h>typedef int ElemType;#define MaxSize 50typedef struct { ElemType data[MaxSize]; int front; //队头指针 int rear; //队尾指针} SqQueue;//循环队列初始化SqQueue* InitQueue(SqQueue *Q) { Q->front = Q->rear = 0
2021-04-02 21:44:55 183
原创 PAT A-B C语言版
这段代码是C语言写的,不过运行会出现超时#include<stdio.h>#include<string.h>int main() { char str[10001]; char str1[10001]; fgets(str, 100001, stdin); fgets(str1, 100001, stdin); for (int i = 0; i < strlen(str); i++) { int n = 0; for (int j = 0; j &
2021-04-02 17:01:41 1616 3
原创 链栈的基本操作 C语言版
#include<stdio.h>#include <stdlib.h>typedef int ElemType;typedef struct Linknode { ElemType data; //数据域 struct Linknode *next; //指针域} LiStack; //栈类型定义//初始化链栈void LiStack_HeadInsert(LiStack *L) { int x; LiStack *s; L = (LiStack*) ma
2021-03-30 15:15:27 225
原创 顺序栈的基本操作 C语言版
#include <stdio.h>#include <stdlib.h>#define MaxSize 50 //定义栈中元素最大个数typedef int ElemType;typedef struct Stack { ElemType data[MaxSize]; //存放栈中元素 int top; //栈顶指针} Stack;//初始化顺序栈Stack* InitStack(Stack *S) { S->top = -1; //初始化栈顶指针 r
2021-03-29 17:18:30 110
原创 顺序表的基本操作 C语言版
#include<stdio.h>//初始化#include <stdlib.h>#define OK 1;#define OVERFLOW -2#define MAXSIZE 5//可能达到的最大长度typedef int Status;typedef int ElemType; //ElemType是线性表中数据元素的类型,此处用int#define InitSize 10typedef struct { ElemType *elem; //指示动态分配数
2021-03-29 16:04:49 89
原创 单链表 C语言版
#include <stdio.h>#include <stdlib.h>typedef int ElemType;typedef struct LNode { ElemType data; //数据域 struct LNode *next; //指针域} LNode;//头插法建立单链表LNode* List_HeadInsert(LNode *L) { int x; LNode *s; L = (LNode*) malloc(sizeof(LNode)
2021-03-29 16:00:56 105
原创 双链表的基本操作 C语言版
#include<stdio.h>#include <stdlib.h>typedef int ElemType;typedef struct DNode { ElemType data; //数据域 struct DNode *prior, *next;} DNode;//尾插法创建双链表DNode* DList_TailInsert(DNode *L) { int x; L = (DNode*) malloc(sizeof(DNode)); //创建头结点
2021-03-29 15:57:34 67
原创 PAT A-B Java
运行会超时,大家可以提下改进的建议import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner input = new Scanner(System.in); //接收数据 String str = input.nextLine(); String str1 = input.nextLine();
2020-12-22 17:21:53 429
原创 PAT 判断素数 Java
运行会超时,希望大家可以帮助改进import java.util.Scanner;public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); // 接收正整数N,回车结束 int N = sc.nextInt(); // 定义数组,接收需要判断的数据 int a[] = new int[N]; // 从键盘键入数据,保存在数组中 f
2020-12-21 17:45:38 190
原创 PAT 幸运彩票 Java
import java.util.Scanner;//import java.util.TreeMap;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String[] arr = new String[n]; for (int i = 0; i < n; i++) { arr[
2020-08-15 15:32:09 1640
原创 6翻了
测试数据it is so 666 really 6666 what else can I say 6666666666执行结果it is so 666 really 9 what else can I say 27import java.util.Scanner;//import java.util.TreeMap;public class Main { public static void main(String[] args) { Scanner sc = new Scan
2020-08-15 15:07:59 191
原创 敲笨钟
import java.util.Scanner;//import java.util.TreeMap;public class Main { public static void main(String[] args) { Scanner sc1 = new Scanner(System.in);/** * 获取行数 */ int a = sc1.nextInt(); Scanner sc = new Scanner(System.in); /** * 一维数组按.
2020-08-15 01:34:33 367
原创 石头剪子布
规定每隔n局出现一次平局,其余全胜,输入end结束。运行实例2BuBuBuBuBuBuBuBuendJianDaoJianDaoBuJianDaoBuJianDaoBuJianDaopackage com.hang1;import java.util.ArrayList;import java.util.Scanner;//import java.util.TreeMap;public class Main { public static void m
2020-08-14 18:52:57 216
原创 Java多线程笔记
1.什么是程序程序(program)是为完成特定任务、用某种语言编写的一组指令的集合。即指一 段静态的代码,静态对象。2.什么是进程进程(process)是程序的一次执行过程,或是正在运行的一个程序。是一个动态 的过程:有它自身的产生、存在和消亡的过程。——生命周期3.什么是线程进程可进一步细化为线程,是一个程序内部的一条执行路径。4.创建多线程方式一(继承Thread类)步骤:(1...
2019-08-02 16:40:12 136
原创 Anaconda3版本python,from lxml import etree出现ImportError: cannot import name 'etree'
解决办法:找到C:\Program Files\Anaconda3\Lib\site-packages下的两个文件夹lxml和lxml-4.3.4.dist-info,将这两个文件夹删除。执行命令pip install lxml 重新安装
2019-07-22 08:51:12 1425
原创 CDH环境下关于Hive的部分命令(四)
1.全表查询select * from stu;2.查询指定的列select id,age from stu;3.列别名select id i from stu;4.求总行数select count(*) from stu;5.求最大值select max(age) max_age from stu;6.求最小值select min(age) min_age fro...
2019-06-17 16:51:43 313
原创 CDH环境下关于Hive的部分命令(三)
1.创建二级分区表create table stu(id int, name string)partitioned by (month string, day string)row format delimited fields terminated by '\t';2.为二级分区表加载数据load data local inpath '/run1/f.txt' into table...
2019-06-15 22:13:59 248
centos7环境下MySQL离线安装步骤
2020-12-04
大数据组件hive的安装步骤
2020-12-04
TA创建的收藏夹 TA关注的收藏夹
TA关注的人