上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 56 下一页
摘要: You are given a m x n 2D grid initialized with these three possible values. Fill each empty room with the distance to its nearest gate. If it is impos 阅读全文
posted @ 2019-07-09 16:13 青衫客36 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 解法一: 递归 解法二: DFS 解法三: BFS 解法四: 并查集 阅读全文
posted @ 2019-07-09 13:25 青衫客36 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 解法一: 两重循环, 找到这两个加和为target的数 解法二: 先将数组中所有的数存放到hashmap中, 再遍历该数组, 判断target-当前的数字nums[i]是否已在hashmap中, 若存在, 并且索引值不同, 则返回, 否则, 继续循环 阅读全文
posted @ 2019-07-08 14:05 青衫客36 阅读(157) 评论(0) 推荐(0) 编辑
摘要: import cards_tools while True: # 显示功能菜单 cards_tools.show_menu() action_str = input("请选择希望执行的操作: ") print("您选择的操作是[%s]" %action_str) # 1,2,3针对名片的操作 if action_str in ["1","2","3"]: # 新增名片 ... 阅读全文
posted @ 2019-07-05 15:28 青衫客36 阅读(1470) 评论(0) 推荐(1) 编辑
摘要: 存在一个样本数据集,也称作训练样本集,并且样本中每个数据都存在标签,即我们知道样本集中每一数据与所属分类的对应关系,输入没有标签的新数据后,将新数据的每个特征与样本集中的数据对应的特征进行比较,然后算法提取样本集中特征最相似的数据(最近邻)的分类标签。一般来说,我们只选择样本集中前k个最相似的数据, 阅读全文
posted @ 2019-07-03 10:03 青衫客36 阅读(234) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std; #define MAXE 20 // 线性表中最多的元素个数 #define MAXR 10 // 基数的最大取值 #define MAXD 8 // 关键字位数的最大取值 // 排序数据节点类型 typedef struct node { char data[MAXD]; struc... 阅读全文
posted @ 2019-05-29 11:25 青衫客36 阅读(145) 评论(0) 推荐(0) 编辑
摘要: package c; class ListNode { int val; ListNode next; ListNode(int x) { val = x; } // 链表结点的构造函数 // 使用arr为参数, 创建一个链表, 当前的ListNode为链表头结点 ListNode(int [] arr) { if(arr == null || arr.le... 阅读全文
posted @ 2019-05-22 13:05 青衫客36 阅读(334) 评论(0) 推荐(0) 编辑
摘要: import java.util.ArrayList; public class AVLTree, V> { private class Node{ public K key; public V value; public Node left, right; public int height; pub... 阅读全文
posted @ 2019-05-21 20:29 青衫客36 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 【问题描述】 “熊猫烧香”是在网络中传播的一种著名病毒,因为图标是一只可爱的熊猫而得名。该病毒比较难以处理的一个原因是它有很多变种。 现在某实验室的网络就不幸感染了这种病毒。从图中可以看到,实验室的机器排列为一个M行N列的矩阵,每台机器只和它相邻的机器直接相连。开始时有T台机器被感染,每台遭遇的熊猫 阅读全文
posted @ 2019-05-20 16:56 青衫客36 阅读(938) 评论(0) 推荐(0) 编辑
摘要: // OpenMP4.cpp : 定义控制台应用程序的入口点。 // 临界区方法进行求和 #include "stdafx.h" #include #include #include #define NUM_THREADS 2 int _tmain(int argc, _TCHAR* argv[]) { clock_t t1, t2; omp_set_num_thre... 阅读全文
posted @ 2019-05-20 13:32 青衫客36 阅读(162) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 56 下一页