码迷,mamicode.com
首页 >  
搜索关键字:describe    ( 1114个结果
大数据第24天-子查询-杨大伟
1 cd /d D:\MyWork\MySQL\mysql-5.7.28-winx64\bin rem 目的是为了执行mysql.exe 2 mysql -h127.0.0.1 -P3306 -uroot -p123456 rem 作用是为了让客户端能够正确的连接服务器 3 mysql --host ...
分类:其他好文   时间:2020-07-26 01:52:32    阅读次数:140
DAY26 - AI
Passage 26 Many researchers use the term Artificial Intelligence (AI) to describe the thinking and intelligent behavior demonstrated by machines. Whil ...
分类:其他好文   时间:2020-07-26 01:02:29    阅读次数:75
剑指office--------二叉树的镜像
题目描述 操作给定的二叉树,将其变换为源二叉树的镜像。 输入描述: 二叉树的镜像定义:源二叉树 8 / \ 6 10 / \ / \ 5 7 9 11 镜像二叉树 8 / \ 10 6 / \ / \ 11 9 7 5 1 /* 2 struct TreeNode { 3 int val; 4 st ...
分类:其他好文   时间:2020-07-22 20:33:30    阅读次数:78
剑指office--------包含min函数的栈
题目描述 定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1))。 1 class Solution { 2 public: 3 stack<int>q,MIN; 4 void push(int value) { 5 q.push(value); 6 i ...
分类:其他好文   时间:2020-07-22 20:32:57    阅读次数:73
剑指09跳台阶
题目描述 一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法(先后次序不同算不同的结果)。 public class Solution { public int JumpFloor(int target) { if (target<=0){ return -1; ...
分类:其他好文   时间:2020-07-22 11:17:25    阅读次数:62
MySQL(1):SQLyog
数据库(DataBase,简称DB) 一. 基本数据库操作命令 flush privileges 刷新数据库 show databases 显示所有数据库 use dbname 打开某个数据库 show tables 显示数据库mysql中所有的表 describe user 显示表mysql数据库 ...
分类:数据库   时间:2020-07-17 11:41:26    阅读次数:93
pat 1134
1134 Vertex Cover (25分) A vertex cover of a graph is a set of vertices such that each edge of the graph is incident to at least one vertex of the set. ...
分类:其他好文   时间:2020-07-10 18:36:42    阅读次数:69
02-线性结构3 Reversing Linked List (25分)
02-线性结构3 Reversing Linked List (25分) Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. Fo ...
分类:其他好文   时间:2020-07-04 22:36:18    阅读次数:69
mysql5.7当两个字段名类似,查询时会出错
excepInfo: select id,describe from iwebshop_student_problem where id=256 order by id desc -- You have an error in your SQL syntax; check the manual th ...
分类:数据库   时间:2020-07-04 13:48:09    阅读次数:75
kubectl 常用命令
1. pod 1.1 查询命令 查找某个pod: kubectl -n get pods | grep <pod_name> 查找某一个pod在哪台服务器上: kubectl -n get pods -o wide | grep <pod_name> 查找某个pod的运行信息: kubectl -n ...
分类:其他好文   时间:2020-07-02 16:51:49    阅读次数:171
1114条   上一页 1 2 3 4 5 6 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!