会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Thereisnospon
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
···
11
下一页
2015年8月8日
Android Studio开发环境搭建
摘要: 先占个位子,持续更新Android Studio,SDK,常用工具下载Android Studio个性化设置Android Studio 常用快捷键 版权声明:本文为博主原创文章,未经博主允许不得转载。
阅读全文
posted @ 2015-08-08 08:45 Thereisnospon
阅读(144)
评论(0)
推荐(0)
2015年7月19日
JAVA基本程序设计结构
摘要: 基本:1.JAVA程序所有内容放在类中2.源代码文件名必须与公共类名相同3.main方法必须声明为public注释:1.单行注释 // 内容2.多行注释/*内容*/3.文档注释 /**文档*/会自动生成文档数据类型:类型 字节int 4short 2long 8byte 1float 4double...
阅读全文
posted @ 2015-07-19 10:58 Thereisnospon
阅读(173)
评论(0)
推荐(0)
JAVA大数使用
摘要: import java.math.BigDecimal;import java.math.BigInteger;import java.math.RoundingMode;import java.util.Scanner;import javafx.scene.transform.Scale;imp...
阅读全文
posted @ 2015-07-19 09:39 Thereisnospon
阅读(186)
评论(0)
推荐(0)
基本SQL操作
摘要: CREATE DATABASE my;/*创建数据库*/SHE DATABASES/*查看所有数据库*/use my;/*切换数据库*/CREATE TABLE car( cid INT NOT NULL PRIMARY KEY AUTO_INCREMENT,/*整型,非空,主键,自动增长*/ n...
阅读全文
posted @ 2015-07-19 09:29 Thereisnospon
阅读(159)
评论(0)
推荐(0)
2015年5月27日
sql
摘要: 登录CREATE DATABASE S1use DATABASE S1__________________________________保存文件:--->d:mysql.sqlCREATE TABLE s1.book(id VARCHAR(30),name VARCHAR(30),price NU...
阅读全文
posted @ 2015-05-27 17:33 Thereisnospon
阅读(89)
评论(0)
推荐(0)
2015年4月29日
普通树的递归遍历
摘要: #include#include#include#define M 3#define MAX 300FILE*rf;void open(){ rf=fopen("tree.txt","r");}void off(){ fclose(rf);}void in(char *ch){ f...
阅读全文
posted @ 2015-04-29 19:49 Thereisnospon
阅读(254)
评论(0)
推荐(0)
2015年4月25日
6_43_递归交换二叉树中所有节点的左右子树
摘要: #include#include#includetypedef struct node{ int data; struct node*lchild,*rchild;}tnode,*tree;tree creat(){ int x; tree t; scanf("%d",...
阅读全文
posted @ 2015-04-25 16:16 Thereisnospon
阅读(247)
评论(0)
推荐(0)
6_42_二叉树递归求叶子节点个数
摘要: #include#include#includetypedef struct node{ int data; struct node*lchild,*rchild;}tnode,*tree;tree creat(){ int x; tree t; scanf("%d",...
阅读全文
posted @ 2015-04-25 16:15 Thereisnospon
阅读(296)
评论(0)
推荐(0)
6_44_二叉树中值为x的节点为根的子树的深度
摘要: #include#include#includetypedef struct node{ int data; struct node*lchild,*rchild;}tnode,*tree;tree creat(){ int x; tree t; scanf("%d",...
阅读全文
posted @ 2015-04-25 16:15 Thereisnospon
阅读(371)
评论(0)
推荐(0)
6_38_二叉树的后序遍历非递归算法(和先序有些许不一样)
摘要: #include#include#includetypedef struct node{ int data,tag; struct node*lchild,*rchild;}tnode,*tree;tree creat(){ int x; tree t; scanf("...
阅读全文
posted @ 2015-04-25 16:13 Thereisnospon
阅读(157)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
···
11
下一页
公告