码迷,mamicode.com
首页 >  
搜索关键字:nta    ( 5390个结果
Java 动态拼接sql 放弃xml文件 直接连接jdbc
package com.cn.sdjr.common;import java.util.List;import java.util.Map;public class Config { // 参数名称/参数值/值补充/是否必填/字段类型/是否主键//默认值 / / /F不必填 /F字符串 /F不是主键 ...
分类:数据库   时间:2021-02-19 13:42:40    阅读次数:0
RFC1925 The Twelve Networking Truths
(1) It Has To Work. (2) No matter how hard you push and no matter what the priority, you can't increase the speed of light. (2a) (corollary). No matte ...
分类:Web程序   时间:2021-02-18 13:21:47    阅读次数:0
盛最多水的容器
此博客链接:https://www.cnblogs.com/ping2yingshi/p/14399182.html 盛最多水的容器 题目链接:https://leetcode-cn.com/problems/container-with-most-water/submissions/ 题目 给你 ...
分类:其他好文   时间:2021-02-16 12:13:20    阅读次数:0
二叉查找树
1 #include <iostream> 2 3 using namespace std; 4 5 template <typename K, typename V> 6 class BST 7 { 8 private: 9 struct node // 类内定义类、结构体 10 { 11 K k ...
分类:其他好文   时间:2021-02-16 12:09:37    阅读次数:0
异步方法测试,暂时不知道对错
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
分类:其他好文   时间:2021-02-15 12:42:07    阅读次数:0
昔我往矣/树上乱搞/lca,树链剖分
题目链接:https://acm.ecnu.edu.cn/contest/354/problem/A/ 原做法:树上倍增+lca,可能生成树的时候复杂度太高,用的是类似并查集的合并方式。 oj上的大佬:https://acm.ecnu.edu.cn/contest/354/submission/22 ...
分类:其他好文   时间:2021-02-15 12:10:05    阅读次数:0
voc2coco
import xml.etree.ElementTree as ET import os import json coco = dict() coco['images'] = [] coco['type'] = 'instances' coco['annotations'] = [] coco['c ...
分类:其他好文   时间:2021-02-15 12:02:04    阅读次数:0
springboot 单元测试添加
Service层单元测试 步骤一:添加 jar 包 <!--mybatis-plus--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version ...
分类:编程语言   时间:2021-02-06 12:17:35    阅读次数:0
Mysql必知必会挑战题和一些乱七八糟东西
SQL sql语句执行顺序 (8) SELECT (9)DISTINCT<select_list> (1) FROM <left_table> (3) <join_type> JOIN <right_table> (2) ON <join_condition> (4) WHERE <where_co ...
分类:数据库   时间:2021-02-06 12:14:46    阅读次数:0
二、设计模式:10、代理模式(Proxy)
1、模式主要思想: 为其他对象提供一种代理以控制(隔离,使用接口)对这个对象的访问。 2、结构: 3、代码 class ISubject{ public: virtual void process(); }; class RealSubject : public ISubject{ public: ...
分类:其他好文   时间:2021-02-06 12:11:44    阅读次数:0
5390条   上一页 1 ... 14 15 16 17 18 ... 539 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!