Categories of Knowledge Points to Master in T-SQL SQL for executing queries against databases SQL for retrieving data from databases SQL for inserting new records into databases SQL for updating data within databases SQL for deleting records from databa…

2019年12月15日 3条评论 7768点热度 0人点赞 痴者工良 阅读全文

  T-SQL 要掌握的知识点分类 SQL 面向数据库执行查询 SQL 从数据库取回数据 SQL 在数据库中插入新的记录 SQL 更新数据库中的数据 SQL 从数据库删除记录 SQL 创建新数据库 SQL 在数据库中创建新表 SQL 在数据库中创建存储过程 SQL 在数据库中创建视图 SQL 设置表、存储过程和视图的权限 SQL 是一门 ANSI 的标准计算机语言,用来访问和操作数据库系统。SQL 语句用于取回和更新数据库中的数据。SQL 可与数据库程序协同工作,比如 MS Access、DB2、Info…

2019年12月15日 3条评论 7744点热度 0人点赞 痴者工良 阅读全文

Table of Contents 1. Network Basics 2. Socket Object 3. Bind() Binding and Connect() Connection 4. Listen() Listening for Connection Requests and Accept() Receiving Connection Requests 5. Receive() and Send() 6. Releasing Resources 7. IPAddress and IPEndPoint …

2019年12月15日 1条评论 66点热度 0人点赞 痴者工良 阅读全文

目录 一,网络基础 二,Socket 对象 三,Bind() 绑定与 Connect() 连接 四,Listen() 监听请求连接 和 Accept() 接收连接请求 五,Receive() 与 Send() 六,释放资源 七,IPAddress 和 IPEndPoint 2019-2-14 晚上第一次写,后面会不断修改、更新。 文章按照 Socket 的 创建、连接、传输数据、释放资源的过程来写。给出方法、参数的详细信息。 一,网络基础 说到 Socket,需要学习一下TCP/IP的知识,了解一下OSI…

2019年12月15日 1条评论 2872点热度 0人点赞 痴者工良 阅读全文

 Newtonsoft.Json Newtonsoft.Json is a tool for manipulating JSON on the .Net platform. There is no need to elaborate on its introduction; I have recently been working on interfaces that require JSON manipulation. Taking the Token from a certain cloud comp…

2019年12月15日 0条评论 102点热度 0人点赞 痴者工良 阅读全文

 Newtonsoft.Json Newtonsoft.Json 是.Net平台操作Json的工具,他的介绍就不多说了,笔者最近在弄接口,需要操作Json。 以某个云计算平台的Token为例,边操作边讲解。 Json 转为 Model 将 Model 转为 Json 将 LINQ 转为 JSON Linq 操作 命名空间、类型、方法大全 另外附上 百度AI 文字识别 Json 及其模型类      Newtonsoft.Json 将字符串转为对象,是根据类型对象名称进行的,大小写不分,…

2019年12月15日 0条评论 3668点热度 0人点赞 痴者工良 阅读全文

Sum of Digits Given a non-negative integer num, repeatedly add the digits of the number until the result is a single digit. Example: Input: 38 Output: 2 Explanation: The process of adding the digits is as follows:3 + 8 = 11, 1 + 1 = 2. Since 2 is a single digi…

2019年12月15日 0条评论 2828点热度 1人点赞 痴者工良 阅读全文

各位相加 给定一个非负整数 num,反复将各个位上的数字相加,直到结果为一位数。 示例: 输入: 38 输出: 2 解释: 各位相加的过程为:3 + 8 = 11, 1 + 1 = 2。 由于 2 是一位数,所以返回 2。 进阶:你可以不使用循环或者递归,且在 O(1) 时间复杂度内解决这个问题吗? 题目地址 https://leetcode-cn.com/problems/add-digits/ 代码模板 public class Solution { public int AddDigits…

2019年12月15日 0条评论 2828点热度 1人点赞 痴者工良 阅读全文

Problem 1 Original link https://leetcode-cn.com/problems/two-sum/ Given an integer array nums and a target value target, please find the two integers in the array that add up to the target value and return their array indices. You may assum…

2019年12月15日 1条评论 3947点热度 0人点赞 痴者工良 阅读全文

题目一 原题链接 https://leetcode-cn.com/problems/two-sum/ 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] = 2 + 7 = 9 所以…

2019年12月15日 1条评论 3929点热度 0人点赞 痴者工良 阅读全文

 Bubble Sort It is a method for sorting numbers in a linear array from largest to smallest or from smallest to largest. Taking sorting from smallest to largest as an example. Data: 11, 35, 39, 30, 7, 36, 22, 13, 1, 38, 26, 18, 12, 5, 45, 32, 6, 21, 42, 23…

2019年12月15日 2条评论 86点热度 0人点赞 痴者工良 阅读全文

 冒泡排序法 是数组等线性排列的数字从大到小或从小到大排序。 以从小到大排序为例。 数据 11, 35, 39, 30, 7, 36, 22, 13, 1, 38, 26, 18, 12, 5, 45, 32, 6, 21, 42, 23 使用 数组 int [] array 存储数字。 过程 (数组从小到大排序)  思路循环都把最大的数放在最后一位,无序数字个数减1。 i 为当前任务位置,n 剩下的无序数字个数 从第 0位开始,比较前后两位数字大大小,当 array[i] > array…

2019年12月15日 2条评论 3447点热度 0人点赞 痴者工良 阅读全文

This article outlines the exam scope, knowledge points, score ratio, tutorial study addresses, and some official documentation for Tencent Cloud Practitioner certification. Table of Contents 1. Assessment requirements, knowledge point distribution 2. Course ou…

2019年12月15日 1条评论 5952点热度 1人点赞 痴者工良 阅读全文

本文列举腾讯云从业者认证的考试范围、知识点、分数比例、教程学习地址、一些官方资料文档。 目录 1,考核要求、知识点分布 2,课程大纲、分数值比例 3,学习路线 4,学习帮助 5,学习资源导航 6,腾讯云从业者认证 资料共享、例题分析、习题实战   考核要求 了解云计算相关的基本概念,理解云计算对业务的影响。 理解腾讯云提供的基础产品和服务的功能:云服务器,云网络,云CDN,云存储,云数据库,云安全。 了解腾讯云提供的基础产品和服务的灵活应用场景。 理解腾讯云提供的基础产品和服务的优势。 理解腾讯云基础[.…

2019年12月15日 1条评论 5900点热度 1人点赞 痴者工良 阅读全文

Data Storage https://gitee.com/whuanle/txcouldrz The author has uploaded all the materials to Tencent Cloud's Coding platform. It contains multiple mind maps, including those provided by Tencent Cloud, maps created by the author, and two sets of official exam …

2019年12月15日 0条评论 72点热度 0人点赞 痴者工良 阅读全文

资料存放 https://gitee.com/whuanle/txcouldrz 笔者已经将所有的资料传送到腾讯云的Coding中。 里面有多个思维导图,包括腾讯云官方提供的思维导图、本人制作的思维导图、官方两套(共200+道题)试卷。 --------------------------- 腾讯云文档中心,所有的考试题目资料都可以在文档中心知道资料。   计算(云服务器) 云存储 网络 云数据库 TencentDB CDN 与加速   云服务器   GPU 云服务器   F…

2019年12月15日 0条评论 4042点热度 0人点赞 痴者工良 阅读全文

Here are a few images to reveal:   ---- This can be used as a document template...  Download link:  https://dev.tencent.com/u/whuanle/p/IOS_work/attachment/4563020 [......] 继续阅读

2019年12月15日 1条评论 3154点热度 0人点赞 痴者工良 阅读全文

先透露几张图   可以作为文档模板来用。。。  下载地址 https://dev.tencent.com/u/whuanle/p/IOS_work/attachment/4563020 [......] 继续阅读

2019年12月15日 1条评论 3140点热度 0人点赞 痴者工良 阅读全文

 Table of Contents 1. Introduction to Elements 2. Elements Versions 3. What Can Elements Do 4. Elements IDEs 5. Elements Tools     1. Introduction to Elements RemObjects Elements is a multi-platform mobile project development tool that helps dev…

2019年12月15日 1条评论 104点热度 0人点赞 痴者工良 阅读全文

 目录 1,Elements 介绍 2,Elements 版本 3,Elements 能干嘛 4,Elements  IDES 5,Elements 工具     1,Elements 介绍 RemObjects Elements,是多平台移动项目开发工具,是一款可以帮助开发人员在 不同平台 进行 移动项目 开发的工具软件。 开发商:Remobjects Software Elements 提供在两个操作系统上使用:Windows 、 Mac 四种版本 : Visual Studio 2017集成版、专业…

2019年12月15日 1条评论 3239点热度 0人点赞 痴者工良 阅读全文
1444546474854