码迷,mamicode.com
首页 >  
搜索关键字:struct enum    ( 22969个结果
[NLP]搜狗词典转换成txt文件
将搜狗的scel文件转换成txt格式,从网站上copy的,但是忘记是哪个网站了。#!/bin/python # -*- coding: utf-8 -*- import struct import sys import binascii import pdb import os try: reloa ...
分类:其他好文   时间:2020-08-07 18:06:32    阅读次数:85
【Spring】IoC控制反转详解
IOC(概念和原理) 什么是 IOC 控制反转(Inversion of Control,缩写为IoC),把对象创建和对象之间的调用过程,交给 Spring 进行管理 使用 IOC 目的:为了耦合度降低 做入门案例就是 IOC 实现 IOC 底层原理 xml 解析 工厂模式 反射 画图讲解 IOC ...
分类:编程语言   时间:2020-08-07 18:03:01    阅读次数:62
POJ - 2352 Stars 树状数组 略坑
注意建树范围开大一点。 x 先让其 +1 ,树状数组不能维护0 这个点。 int n; int c[32005]; struct Point { int x, y; Point(int _x = 0, int _y = 0) { x = _x; y = _y; } friend bool opera ...
分类:编程语言   时间:2020-08-07 12:36:18    阅读次数:81
二叉树的中序遍历
题目描述: 给定一个二叉树,返回它的中序 遍历。 输入: [1,null,2,3] 1 \ 2 / 3 输出: [1,3,2] //go //* Definition for a binary tree node. type TreeNode struct { Val int Left *TreeN ...
分类:其他好文   时间:2020-08-06 09:31:39    阅读次数:66
leetcode7:binary-tree-preorder-traversal
题目描述 求给定的二叉树的前序遍历。 例如: 给定的二叉树为{1,#,2,3}, 1 \ 2 / 3 返回:[1,2,3]. 备注;用递归来解这道题太没有新意了,可以给出迭代的解法么? /** * struct TreeNode { * int val; * struct TreeNode *lef ...
分类:其他好文   时间:2020-08-05 13:09:09    阅读次数:71
[算法学习] 平衡树 splay
基本信息维护 struct Splay { int sz, fa, val, cnt, ch[2]; //sz 表示子树大小 //ch[0 / 1]表示左右两个儿子 //fa 表示父亲 //cnt 表示该点的值出现了几次 //val 节点的值 } t[N]; #define ls(p) (t[p]. ...
分类:编程语言   时间:2020-08-05 00:11:51    阅读次数:115
LinQ高级查询、组合查询、IQueryable集合类型
LinQ高级查询、组合查询、IQueryable集合类型 LinQ高级查询: 1、模糊查询(包含) Repeater1.DataSource = con.car.Where(r =>r.name.Contains(s)).ToList(); 2、开头 Repeater1.DataSource = c ...
分类:其他好文   时间:2020-08-04 16:40:03    阅读次数:74
CDQ分治
#include<bits/stdc++.h> using namespace std; const int maxn=200005; struct node{ int a; int b; int c; int cnt; int ans; }s1[maxn],s2[maxn]; int n,m,k, ...
分类:其他好文   时间:2020-08-03 09:51:54    阅读次数:74
Servlet 04 ----【javaweb-07】
SERVLET HttpServletResponse && HttpServletRequest 在web服务器接收到客户端的请求时,会分别创建两个对象:HttpServletResponse && HttpServletRequest 如果要获取客户端请求过来的数据,则须使用HttpServle ...
分类:编程语言   时间:2020-08-02 17:36:47    阅读次数:123
22969条   上一页 1 ... 54 55 56 57 58 ... 2297 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!