入门客AI创业平台(我带你入门,你带我飞行)
博客笔记
08
2016-05
最简单的win32的窗口程序 2016-05-08
// win32004.cpp : Defines the entry point for the application. // #include "stdafx.h" LRESULT CALLBACK WindowProc(  HWND hwnd,      // handle to windowUINT uMsg,      // message identifier
22
2016-07
C#实现输入一个字符串输出该字符串字符的所有排列方式 2016-07-22
        //写一函数,输入一个字符串,输出该字符串字符的所有排列方式        public static void  getStrs(string str){            if(str.Trim
25
2016-10
用C语言写一个数组,实现类似JAVA语言中ArrayList的功能 2016-10-25
此程序是在看过郝斌老师的数据结构与算法的视频后,自己用C语言实现的。整个程序比较简单,适合入门数据结构时练手。 #include #include #include
13
2017-09
leetcode 1|167.two sum 1|2 && 3.three sum && 16.3Sum Closest && 18. 4Sum 2017-09-13
1. two sum 下面有c++ 和Python代码 Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have e

			
				solr5.5的搭建,以及第一个core的配置
solr5.5的搭建,以及第一个core的配置 2016-05-15
WINDOWS+TOMCAT8+JDK7+SOLR5.5(注:JDK的安装,以及tomcat的下载,tomcat下解压版,此处不介绍) solr5.5 下载地址 http://apache.fayea.com/lucene/solr/5.5.0/ 搭建solr 5.5 第

			
				JAVA环境变量配置
JAVA环境变量配置 2018-01-18
首先在Oracle的网站上下载对应的JDK版本,然后安装。注意在Windows下,为了避免在使用命令行的时候出现问题,一般不要选择安装在C:Program Filesjdk目
04
2016-08
简单的WIN32窗口封装 2016-08-04
封装窗口对象。 (注意。有些命名我是直接复制win32API的,偷懒了) 本来是想直接用虚函数来处理消息的,但是消息很多,写的会很吃力,所以采用类似MFC
02
2015-09
像素数据的存储 2015-09-02
一个黑白像素和一个彩色像素分别占几个字节? 取决于需要存储一个像素的多少信息,以及是否采用了压缩技术。 如果是非黑即白的二值图像,
22
2013-11
LeetCode (1) Two Sum (15)Three sum (16)Three sum closest (17)Four sum 2013-11-22
这是个系列问题,都从最基本的2sum问题展开而来。如下: Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum shou
01
2011-03
VS生成的最简WIN32窗口程序 2011-03-01
// win32_basic.cpp : 定义应用程序的入口点。 //   #include "stdafx.h" #include "win32_basic.h"   #define MAX_LOADSTRING 100   // 全局变量: HINSTANCE hInst;