码迷,mamicode.com
首页 >  
搜索关键字:ever    ( 3292个结果
Python3 面向对象程序设计(类)
一、自定义类 1、属性与方法 格式: class classname: def __init__(self,a,b): self.a=a self.b=b def ... >一般都有一个__init__函数来定义属于这个类的参数,前后都被"__"包围的函数为特殊方法 ;以"__"开头的变量只能读,不 ...
分类:编程语言   时间:2017-06-14 23:28:20    阅读次数:290
植物大战僵尸
#import <Foundation/Foundation.h> @interface CommonZomble : NSObject { NSString * _zombleKind;//僵尸种类 NSInteger _totalBloodVolume;//总血量 NSInteger _ever ...
分类:其他好文   时间:2017-06-14 22:33:50    阅读次数:180
[leetcode-131-Palindrome Partitioning]
Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s. For exampl ...
分类:其他好文   时间:2017-06-14 18:14:16    阅读次数:120
数组的排序(从小到大)
namespace ConsoleApplication2{ class Program { static void Main(string[] args) { int[] Arrays = new int[] { 24, 14, 35, 86, 55, 68, 15 };//创建一个数组名为Arr ...
分类:编程语言   时间:2017-06-14 11:40:15    阅读次数:169
特征选择Boruta
使用Boruta前 ,需要对缺失值进行填充。 https://www.analyticsvidhya.com/blog/2016/03/select-important-variables-boruta-package/ Variable selection is an important aspe ...
分类:其他好文   时间:2017-06-14 11:36:23    阅读次数:195
POJ 1466 Girls and Boys (匈牙利算法 最大独立集)
Girls and Boys Time Limit: 5000MS Memory Limit: 10000K Total Submissions: 10912 Accepted: 4887 Description In the second year of the university somebo ...
分类:编程语言   时间:2017-06-13 18:21:32    阅读次数:201
ubuntu10.10下QT开发环境搭建(一)
转载请注明原文出处,http://www.cnblogs.com/flyingcloude/p/6992441.html ubuntu10.10的安装不作记录了。很简单,只要到ubuntu的官网下载,然后做成usb安装,然后傻瓜式一路next,即可安装完成。 在安装QT开发环境之前,先安装一些必要的 ...
分类:系统相关   时间:2017-06-12 14:38:26    阅读次数:228
MySQL(二)
视图 视图是一个虚拟表(非真实存在),其本质是【根据SQL语句获取动态的数据集,并为其命名】,用户使用时只需使用【名称】即可获取结果集,并可以将其当作表来使用。 1、创建视图 2、删除视图 4、使用视图 使用视图时,将其当作表进行操作即可,由于视图是虚拟表,所以无法使用其对真实表进行创建、更新和删除 ...
分类:数据库   时间:2017-06-12 13:10:12    阅读次数:201
Balanced Binary Tree Leetcode
Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as a binary tree in which the dept ...
分类:其他好文   时间:2017-06-12 00:40:11    阅读次数:128
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!