本系统使用Struts2+Spring+Hibernate架构,数据库使用MySQL,连接池使用c3p0。 模仿花礼网进行前端设计与开发,实现网站导航、商品分类展示,商品详情、商品检索、购物车等功能。使用EasyUI实现后台对商品分类、商品信息、用户信息、订单信息的管理,包括增删改查,文件上传等。 ...
分类:
其他好文 时间:
2021-01-14 10:32:54
阅读次数:
0
题目 1 class Solution { 2 public: 3 vector<double>ans; 4 vector<double> averageOfLevels(TreeNode* root) { 5 if(!root) return ans; 6 queue<TreeNode*>q; 7 ...
分类:
其他好文 时间:
2021-01-13 10:58:14
阅读次数:
0
题目 本题目一开始想要通过二叉树遍历KMP匹配,但看来实现比较复杂 不如直接暴力匹配,本题和LeetCode100.相同的树有共通之处 1 class Solution { 2 public: 3 bool isSubtree(TreeNode* s, TreeNode* t) { 4 if(!s ...
分类:
其他好文 时间:
2021-01-12 11:17:21
阅读次数:
0
给定一个二叉树,返回它的 后序 遍历。 示例: 输入: [1,null,2,3] 1 \ 2 / 3 输出: [3,2,1] 进阶: 递归算法很简单,你可以通过迭代算法完成吗? C 代码 ...
分类:
其他好文 时间:
2021-01-08 11:18:58
阅读次数:
0
慢慢来 public class HashMap<K,V> extends AbstractMap<K,V> implements Map<K,V>, Cloneable, Serializable {} tableSizeFor(int) 根据给定的容量大小,返回指定的int类型的数,这个数是2的 ...
分类:
其他好文 时间:
2021-01-08 10:57:21
阅读次数:
0
题目 1 class Solution { 2 public: 3 4 bool isSymmetric(TreeNode* root) { 5 return check(root,root); 6 } 7 bool check(TreeNode* p,TreeNode* q) { 8 if(!p ...
分类:
其他好文 时间:
2021-01-05 11:37:37
阅读次数:
0
题目描述 1 /** 2 * Definition for a binary tree node. 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6 * TreeNode *right; 7 * TreeNode() : val(0), ...
分类:
其他好文 时间:
2021-01-05 11:28:10
阅读次数:
0
剑指 Offer 28. 对称的二叉树 class Solution { public boolean isSymmetric(TreeNode root) { if(root == null) return true; return Just(root.left,root.right); } pu ...
分类:
其他好文 时间:
2021-01-05 11:27:06
阅读次数:
0
前序 class Solution { public: vector<int> preorderTraversal(TreeNode* root) { vector<int> res; if (root == nullptr) { return res; } stack<TreeNode*> stk ...
分类:
其他好文 时间:
2021-01-01 12:36:16
阅读次数:
0
使用easyUI的datagrid组件有的时候需要直接给某列固定值(如操作列)或是对数据进行格式化,这时候就需要formatter属性。 <table style="width:600px" class="easyui-datagrid" data-options="title:'信息列表',url ...
分类:
其他好文 时间:
2020-12-31 11:47:01
阅读次数:
0