笔记
努力的子墨
这个作者很懒,什么都没留下…
展开
-
Spring Boot面试题
Spring Boot面试题①概述什么是 Spring Boot?Spring Boot 有哪些优点?Spring Boot 的核心注解是哪个?它主要由哪几个注解组成的?②配置什么是 JavaConfig?Spring Boot 自动配置原理是什么?你如何理解 Spring Boot 配置加载顺序什么是 YAML?YAML 配置的优势在哪里 ?Spring Boot 是否可以使用 XML 配置 ?spring boot 核心配置文件是什么?bootstrap.properties 和 application原创 2022-04-25 15:56:17 · 323 阅读 · 0 评论 -
2021-11-15
* struct ListNode { * int val; * struct ListNode *next; * }; */ struct ListNode *insertionSortList(struct ListNode *head) { if (head == NULL) { return head; } struct ListNode *dummyHead = malloc(sizeof(struct ListNode)); .原创 2021-11-15 21:19:48 · 254 阅读 · 0 评论 -
2021-11-07
//交换左右子树 #include<bits/stdc++.h> using namespace std; typedef struct treenode{ char data; struct treenode *lchild,*rchild; }treenode,*tree; void buildtree(tree &t) { char ch; ch=getchar(); if(ch=='#') t=NULL; else {原创 2021-11-07 21:11:35 · 61 阅读 · 0 评论 -
2021-11-07
//合并链表 递减 #include<iostream> using namespace std; typedef struct lnode{ int data; struct lnode *next; }lnode,*linklist; int a[4]={1,2,3,4}; int b[5]={3,4,5,6,7}; int n1=4,n2=5; void buildlist(linklist &L,int aa[],int n) { L=(linklist)原创 2021-11-07 21:05:07 · 102 阅读 · 0 评论