英文: Group and Game Algorithm 问题 我在考虑一种算法,将游戏分配给对手的配对,他们会玩这个游戏。 我有x个对手和y个游戏(我认为y应该是x - 1,但我不确定) 每个对手应...
算法化的方法来合并同一联系人的不同联系电话和电子邮件
英文: Algorithmic way to combine different contact number and emails for same contact 问题 我有以下的tibble, ...
从链表中删除节点,LeetCode,超出时间限制错误。
英文: Remove nodes from linked list leetcode , time limit exceeded error 问题 给定一个链表的头节点。 删除每个节点,如果它右侧的任...
给定概率返回真或假的算法的理论分析
英文: Theoretical analysis of the algorithm that returns true or false, given a probability 问题 要实现一个以概...
生成一个汉夫曼编码,永远不会在编码时产生字符串“00”。
英文: Generating a Huffman code that never produces the string "00" upon encoding 问题 我正在尝试使用...
isPrime(n) 如果迭代到 sqrt(n) 的运行复杂度是什么?
英文: What is the runtime complexity of isPrime(n) if you iterate up to sqrt(n) 问题 以下是已翻译的部分: What wou...
如何在给定的矩形列表中找到点所在位置?(在小于O(n)的复杂度下)
英文: How to find where does Point lies in given list of rectangles ? (In less than O(n) complexity) 问...
寻找数值下降速度超过二次时间的最长区间
英文: Finding the longest interval with a decrease in value faster than quadratic time 问题 我有一组某个度量标准的数...
Is there a way to sort the values of a DataStructure (Key/Value pairs) by first extracting the values (int) to an array, and performing a MergeSort?
英文: Is there a way to sort the values of a DataStructure (Key/Value pairs) by first extracting the v...
如何在Python中对列表中的列表进行排序,以避免重复的名称排在一起
英文: How to sort a list of lists in Python without having repeated names together 问题 以下是翻译好的部分: 我有以下包...
70