码迷,mamicode.com
首页 >  
搜索关键字:unique    ( 4837个结果
690. Employee Importance
You are given a data structure of employee information, which includes the employee's unique id, their importance value and their direct subordinates' ...
分类:其他好文   时间:2021-04-13 12:31:50    阅读次数:0
【Dataguard】DataGuard运维注意事项
【Dataguard】DataGuard运维注意事项 原创 Oracle 作者:xysoul_云龙 时间:2021-03-30 14:12:32 398 0 DataGuard 主要目的 或者作用 1、主备唯一名不能相同 1 2 3 db_name,db_unique_name,instance_n ...
分类:其他好文   时间:2021-04-02 13:36:40    阅读次数:0
C++实现简易线程池
#include <iostream> #include <vector> #include <thread> #include <mutex> #include <condition_variable> #include <queue> #include <functional> using na ...
分类:编程语言   时间:2021-03-30 13:55:19    阅读次数:0
C++实现简单的线程安全队列
/* 实现一个线程安全的队列 */ template <class T> class SafeQueue { public: SafeQueue(void):q(),m(),c() {} ~SafeQueue(void) {} // Add an element to the queue. void ...
分类:编程语言   时间:2021-03-18 14:12:09    阅读次数:0
0823. Binary Trees With Factors (M)
Binary Trees With Factors (M) 题目 Given an array of unique integers, arr, where each integer arr[i] is strictly greater than 1. We make a binary tree u ...
分类:其他好文   时间:2021-03-15 11:24:45    阅读次数:0
C++内存管理之unique_ptr
一个unique_ptr"拥有“他所指向的对象。与shared_ptr不同,某个时刻只能有一个unique_ptr指向一个给定的对象。当unique_ptr被销毁时,它所指向的对象也被销毁。uniptr_ptr表达的是一种独占的思想。 初始化 #include <iostream> #include ...
分类:编程语言   时间:2021-03-10 13:24:43    阅读次数:0
LeetCode - Unique Binary Search Trees
Given an integer n, return the number of structurally unique BST's (binary search trees) which has exactly n nodes of unique values from 1 to n. Examp ...
分类:其他好文   时间:2021-02-20 12:13:36    阅读次数:0
算法图解——组合求和( Combination Sum)
组合求和( Combination Sum) 1. 题目描述 Given an array of distinct integers candidates and a target integer target, return a list of all unique combinations of ...
分类:编程语言   时间:2021-02-18 13:37:18    阅读次数:0
PAT A1119 Pre- and Post-order Traversals (30 分)
Suppose that all the keys in a binary tree are distinct positive integers. A unique binary tree can be determined by a given pair of postorder and ino ...
分类:其他好文   时间:2021-02-16 12:28:45    阅读次数:0
1239. Maximum Length of a Concatenated String with Unique Characters
问题: 给定一组字符串数组, 有这些字符串合并构成不存在重复字符的“集连字符串” 求该集连字符串最大长度。 Example 1: Input: arr = ["un","iq","ue"] Output: 4 Explanation: All possible concatenations are ...
分类:其他好文   时间:2021-02-06 12:15:04    阅读次数:0
4837条   上一页 1 2 3 4 5 ... 484 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!