摘要:
http://blog.chinaunix.net/uid-22889411-id-59688.html c语言中指针学习: 入门介绍: int i=30;//定义一个int型的变量i(两个字节的内存,不同系统可能情况不一样,将这两个字节的内存命名为i,将30转成二进制存入这两个内存中) int * 阅读全文
摘要:
这里使用ID3算法构造决策树,引用http://my.oschina.net/dfsj66011/blog/343647的内容。 outlook temperature humidity windy play sunny hot high false no sunny hot high true n 阅读全文
摘要:
//实现一个类,实现栈的功能:(构建单链表,有一个头结点,head) class MinStack { private class ListNode { int val; ListNode next; int min; ListNode(int x) { val = x; } }//leetcode 阅读全文