码迷,mamicode.com
首页 >  
搜索关键字:parent    ( 6866个结果
第四次安卓
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" an ...
分类:移动开发   时间:2020-12-04 11:30:31    阅读次数:12
使用优先队列完成了一个Astar搜索算法的c++实现,有时间可以完整的完成一遍
#include<queue> #include<vector> #include<unordered_map> using namespace std; struct Node { int x; int y; double cost; int parent; Node(int ix, int iy ...
分类:编程语言   时间:2020-11-27 11:07:17    阅读次数:8
6种JavaScript继承方式及优缺点
友情提示:想要更好的理解js继承方式,须了解构造函数、原型对象、实例化对象、原型链等概念 第一种:原型链继承利用原型链的特点进行继承 function Parent(){ this.name = 'web前端'; this.type = ['js','html','css']; } Parent.p ...
分类:编程语言   时间:2020-11-25 12:44:08    阅读次数:10
springboot之上传文件
1、pom 包配置 我们使用 Spring Boot 版本 2.1.0、jdk 1.8、tomcat 8.0。 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</a ...
分类:编程语言   时间:2020-11-24 12:18:53    阅读次数:9
安卓购物菜单
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" an ...
分类:移动开发   时间:2020-11-23 12:00:24    阅读次数:16
继承中的this
父类: public class Parent { //看这里的this指的是什么 public Parent() { this.say(); } protected void say() { System.out.println("father"); } } 子类: public class Su ...
分类:其他好文   时间:2020-11-21 12:40:44    阅读次数:24
leetcode 116. Populating Next Right Pointers in Each Node
You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the following defin ...
分类:其他好文   时间:2020-11-20 12:00:39    阅读次数:9
PriorityQueue原理分析——基于源码
在业务场景中,处理一个任务队列,可能需要依照某种优先级顺序,这时,Java中的PriorityQueue(优先队列)便可以派上用场。优先队列的原理与堆排序密不可分,可以参考我之前的一篇博客: 堆排序总结与实现 原理 PriorityQueue中维护一个Queue[]数组,在逻辑上把它理解成一个小根堆 ...
分类:其他好文   时间:2020-11-19 12:02:21    阅读次数:7
JS实现平衡二叉树
1 class TreeNode { 2 constructor(key) { 3 this.key = key; 4 this.leftChild = null; 5 this.rightChild = null; 6 this.parent = null; 7 } 8 rightRotate() ...
分类:Web程序   时间:2020-11-06 02:45:04    阅读次数:36
Android Layout属性
通用属性 android:layout_height android:layout_width 值 含义 fill_parent/match_parent 高度或者宽度对齐到父控件 wrap_content 包围本控件的内容 android:gravity android:layout_gravit ...
分类:移动开发   时间:2020-11-06 02:37:43    阅读次数:28
6866条   上一页 1 ... 9 10 11 12 13 ... 687 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!