ICode9

精准搜索请尝试: 精确搜索
  • 2021-10-15:合并两个有序的数组2021-10-15 19:02:47

    2021年10月15日 学习内容:合并两个有序的数组 时间复杂度:O(n) 代码示例(1) int* MergeTwoArr(int arr[], int len_a, int brr[], int len_b) { if (arr == NULL || brr == NULL) return NULL; if (len_a <= 0 || len_b <= 0) return NULL; int* crr = (int*)malloc(sizeo

  • 常见的一些面试题(三)2021-09-30 19:59:03

    一、选择题 原生JS创建元素的方法是什么?(A) document.createElementdocument.createTextNodedocument.getElementByIddocument.getElementByTagName 二、多选题 1.原生JS中绑定事件的方法有哪些(AD)        A.addEventListener        B.  createElement        C

  • [SAA + SAP] 17. RDS - Aurora2021-08-03 02:31:22

    Faster than MySQL... Postgres Failover faster CRR: entire database is copied (not select tables) Load / Offload data directly from / to S3: efficient use of resources Support for Cross Region Replication as other RDS database Has Writer Endpoint and

  • 1.filter对数组对象去重时的特殊处理2021-04-04 23:35:13

    1.filter通常情况下是用来返回一个符合条件的新数组的,并且他不会对原数组产生影响: comment_or_reply_id: "ob8qj0xq8e5s", from_uid: "1502039268@qq.com", isAgreeClick: true, topic_id: "604629fd0344202df0b22d81", topi

  • ORA-01405 : fetched column value is NULL2020-12-29 17:02:37

      ORA-01405错误原因,场景 在使用   select into from 语句时  from  子查询查到字段值有为  NULL  ,  into 的时候不能为  NULL  。 可以使用   oracle NVL()  函数将   NULL 替换。   You tried to execute a FETCH, but the INTO clause returned a NUL

  • 字符串的复制,链接,长度,比较大小2019-07-10 12:42:01

    /*#if 0 #include<stdio.h> //1.复制,crr=arr //2.链接,arr+=brr;Mystrcat(); //3.比较大小,arr<brr;Mystrcmp; //4.长度, //库函数不安全:数组越界。 //des:目的字符串;src:源字符串 //复制 void Mystrcpy(char des[],char src[]) { int i; for(i=0;src[i]!=’\0’;i++) { des[i]

  • 【CRR学习笔记】HTTP2.02019-03-30 21:50:23

    HTTP/2.0 HTTP/1.1 新特性 默认是长连接 支持流水线 支持同时打开多个 TCP 连接 支持虚拟主机 新增状态码 100 支持分块传输编码 新增缓存处理指令 max-age HTTP/1.x 缺陷 HTTP/1.x 实现简单是以牺牲性能为代价的: 客户端需要使用多个连接才能实现并发和缩短延迟; 不会压缩请

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有