码迷,mamicode.com
首页 >  
搜索关键字:wild pointer    ( 2262个结果
C语言:通过指针函数输出二维数组中每个学生的成绩
//// main.c// Pointer_function//// Created by ma c on 15/8/2.// Copyright (c) 2015年 bjsxt. All rights reserved.// 要求:通过指针函数,输入学生学号时,在控制台上显示对应的学生成绩。#in...
分类:编程语言   时间:2015-08-02 21:21:42    阅读次数:111
C语言:通过指针对字符串进行拼接
//// main.c// Pointer_stringcat//// Created by ma c on 15/8/2.// Copyright (c) 2015年 bjsxt. All rights reserved.// 要求:使用指针连接字符串,并将连接后的字符串输出到屏幕上。#inclu...
分类:编程语言   时间:2015-08-02 20:03:10    阅读次数:110
C语言通过指针对数组元素进行排序
//// main.c// Pointer_array//// Created by ma c on 15/8/2.// Copyright (c) 2015年 bjsxt. All rights reserved.// 要求:使用指针的指针输出字符串。首先要使用指针数组创建一个字符串数组,然后定义...
分类:编程语言   时间:2015-08-02 18:03:18    阅读次数:166
C++面向对象程序设计 笔记2(Class with pointer members)
二 Class with pointer members(Class String)1. 测试代码(使用效果)int main(){ String s1(), String s2("hello"); //构造函数 String s3(s1); ...
分类:编程语言   时间:2015-08-02 11:40:52    阅读次数:134
C++面向对象程序设计 笔记1(Class without pointer members)
Introduce class without pointer members, take Class Complex as an example
分类:编程语言   时间:2015-08-02 11:29:00    阅读次数:149
数据结构:链表 >> 链表按结点中第j个数据属性排序(冒泡排序法)
创建结点类,链表类,测试类 1 import java.lang.Object; 2 //结点node=数据date+指针pointer 3 public class Node { 4 Object iprop; 5 public Object getIprop(int i){ 6 ...
分类:编程语言   时间:2015-07-31 19:52:48    阅读次数:170
In order to use an interrupt in a Cortex-M3/M4, you need the following
a stack. The core automatically saves several registers on the stack when an interrupt fires. Initial stack pointer value is read from address 0x0 the...
分类:Windows程序   时间:2015-07-29 22:55:38    阅读次数:194
使用CSS3制作酷炫仿苹果複選框
1、CSS3 兄弟选择符(E~F) 2、CSS :after 选择器 3、神奇的css属性pointer-events课程链接:http://www.gbtags.com/gb/gbliblist/136.htm
分类:移动开发   时间:2015-07-29 15:50:21    阅读次数:127
指针和数组解析
指针和数组指针和数组是一样的吗? 经常可以看到“数组就是指针”、“数组名就是常量指针”这些说法,但真的是这样吗?让我们先看一下指针和数组的定义。 1. 指针 根据C99标准,指针的定义如下:A pointer type may be derived from a function type o...
分类:编程语言   时间:2015-07-29 06:15:20    阅读次数:118
LeetCode138 Copy List with Random Pointer(深度复制带有随机指针的链表) Java题解
题目: A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null. Return a deep copy of the list. 解题: 这题是要复制一个链表,这个链表比...
分类:编程语言   时间:2015-07-28 23:17:43    阅读次数:583
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!