#Linked List
Explore tagged Tumblr posts
lost-coder · 9 months ago
Text
Just finished a code of 200 lines and now i have to write it in LAB FILE!!!
BC! ye kya baat hui bhai !!! CLG should understand this T-T
12 notes · View notes
wobinbug · 2 years ago
Text
I decided to sit my ass down and learn what a linked list is finally 🫣
Tumblr media
It was shockingly uncomplicated 💀
I ended up implementing my own doubly linked list for integers in C and it was super helpful for understanding the data structure as well as a nice reminder about using pointers and manual memory allocation.
Of course, I wrote a few functions to do the following:
- Add to start of list
- Add to end of list
- Remove from start of list
- Remove from end of list
- Delete specific value
Of course, there's much more I can do, but I'm happy with where I'm at so far. Definitely a good exercise to get back into things before uni starts properly 😁
75 notes · View notes
webthreecorp · 2 months ago
Text
Mastering Linked Lists: Beginner's Guide
Hey Tumblr friends 👋
After learning about Arrays, it's time to level up! Today we’re diving into Linked Lists — another fundamental building block of coding! 🧱✨
So... What is a Linked List? 🤔
Imagine a treasure hunt 🗺️:
You find a clue ➡️ it points you to the next clue ➡️ and so on.
That's how a Linked List works!
🔗 Each element (Node) holds data and a pointer to the next Node.
It looks something like this: [data | next] -> [data | next] -> [data | next] -> NULL
Why Use a Linked List? 🌈
✅ Dynamic size (no need to pre-define size like arrays!) ✅ Easy insertions and deletions ✨ ✅ Great for building stacks, queues, and graphs later!
❌ Slower to access elements (you can't jump straight to an item like arrays).
Basic Structure of a Linked List Node 🛠️
Tumblr media
data -> stores the actual value
next -> points to the next node
📚 CRUD Operations on Linked Lists
Let’s build simple CRUD functions for a singly linked list in C++! (🚀 CRUD = Create, Read, Update, Delete)
Create (Insert Nodes)
Tumblr media
Read (Display the list)
Tumblr media
Update (Change a Node’s Value)
Tumblr media
Delete (Remove a Node)
Tumblr media
🌟 Final Thoughts
🔗 Linked Lists may look tricky at first, but once you master them, you’ll be ready to understand more powerful structures like Stacks, Queues, and even Graphs! 🚀
🌱 Mini Challenge:
Build your own linked list of your favorite songs 🎶
Practice inserting, updating, and deleting songs!
If you loved this explainer, give a follow and let's keep leveling up together! 💬✨ Happy coding, coder fam! 💻🌈 For more resources and help join our discord server
4 notes · View notes
menswearmusings · 4 months ago
Text
For Patreon Members—Comments on "How to Dress Like a Gentleman—And Why"
From “The Free Press”—How to Dress Like a Gentleman—And Why [A relative sent me this article. It occurred to me this may be in a publication that politically aligns one way or the other, I’m not sure, and I don’t know the author.] So with that caveat I’ll say: I liked this article. Some of…
Read more at Menswear Musings
2 notes · View notes
theinternetarchive · 2 months ago
Text
Tumblr media Tumblr media Tumblr media
i have turned it into a letterboxd list: good films that are free on the internet archive!!!! Each film is linked in the notes on letterboxd. this will be continually updated so it's a good link to save if you want to keep up!
18K notes · View notes
sentientcanvas · 2 months ago
Text
They just release a new data structure called kinked list
0 notes
justnshalom · 3 months ago
Text
When to Use an Array and When to Use a Linked List in JavaScript
Introduction As a JavaScript developer, you are likely familiar with arrays and linked lists. Both of these data structures have their own advantages and use cases. In this article, we will discuss when to use an array and when to use a linked list in JavaScript, along with example code to demonstrate their usage. When to Use an Array Arrays are one of the most commonly used data structures in…
0 notes
fortunatelycoldengineer · 11 months ago
Text
Tumblr media
Circular Queue . . Explore this essential concept of Data Structures! It covers key topics and resources for every tech enthusiast from algorithms to Data Structure. Perfect for learning and growth. Let's connect and innovate together! . . Check the link below: https://bit.ly/3YKTMrV
0 notes
devsenv · 1 year ago
Text
 "Mastering C Programming: A Comprehensive Guide for Beginners and Experts"
Understanding C Programming: The Foundation of Modern Software Development
C programming, developed in the early 1970s by Dennis Ritchie at Bell Labs, is one of the most enduring and influential programming languages in the history of computing. Its design has directly influenced many other popular languages such as C++, Java, and Python. Despite the emergence of numerous high-level programming languages, C remains a cornerstone in both academic and professional software development environments due to its efficiency, control, and widespread use in system-level programming.
Tumblr media
The Essence of C Programming
C is a general-purpose programming language that is particularly well-suited for system programming, including the development of operating systems, compilers, and embedded systems. It provides low-level access to memory through the use of pointers, which allows for efficient manipulation of data and memory management. This is one reason why the UNIX operating system, originally written in assembly language, was eventually rewritten in C.
The syntax of C is concise and powerful. Its constructs map efficiently to typical machine instructions, which makes it an ideal language for performance-critical applications. The simplicity of C's syntax, compared to other languages at the time of its creation, made it easier to learn and use while still being robust enough to handle complex programming tasks.
Key Features of C
Portability: One of the primary reasons for C's enduring popularity is its portability. Programs written in C can be compiled and run on different types of computers with little or no modification, which is crucial in today's diverse computing environments.
Efficiency: C is known for producing fast and efficient code. Its low-level capabilities allow programmers to write code that executes quickly and uses system resources judiciously. This makes it an excellent choice for performance-sensitive applications.
Modularity: C encourages the modular design of software. Functions in C can be defined and called independently, which makes code easier to understand, maintain, and reuse. This modularity is further enhanced by the use of header files and libraries.
Rich Library Support: The standard C library provides a rich set of built-in functions for performing common tasks, such as input/output operations, string manipulation, mathematical computations, and memory management. This extensive library support accelerates the development process.
C in Modern Context
Despite being over four decades old, C remains relevant in modern computing. It is extensively used in developing firmware and embedded systems, where direct hardware manipulation is required. The language's influence is also evident in many contemporary programming languages. For example, C++ was developed as an extension of C to include object-oriented features while maintaining C's efficiency and low-level capabilities.
Learning C provides a strong foundation for understanding computer science concepts and principles. Many educational institutions use C as an introductory programming language because it teaches fundamental programming techniques, such as variable manipulation, control structures, data structures, and algorithm development, which are applicable to learning other languages.
Conclusion
C programming is more than just a language; it is a gateway to understanding the inner workings of computers and software development. Its efficiency, control, portability, and rich library support make it an indispensable tool for programmers. Whether used in system programming, embedded systems, or as a stepping stone to other languages, C continues to be a fundamental part of the software development landscape. Its influence on modern programming practices and its role in the development of many other languages underscore its importance and enduring legacy in the world of computing.
1 note · View note
cuntphoric · 5 months ago
Text
Tumblr media Tumblr media Tumblr media
‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎‎ ‎ ‎ ‎ ‎ masterlist
satoru gojo
big stretch spiderman!gojo webs you up mwahs your tits video games after sex making out with rival!gojo gojo sucks tits when he's bored gojo and geto overstimming your tits desperate gojo deepthroating you wearing gojo's blindfold while he plays with your folds gojo masturbates over your photos overstimulation with gojo praise & degrade gojo loooves edging you just to see you beg shower sex
what a game threesome gojo's hands good kisser gojo gojo loves you and your dick sucking skills cumplay small or large he's good gojo misses your titties and fucks you later on softdom!gojo loves worshipping gojo IS the present male lactation LOL bad time? geto x gojo x you first time sucking him aftermath
happy trail gojo gojo's dick is pretty he knows how to use it gojo's dick hcs getting off to your reactions giving your bf gojo head gojo loves missionary bf gojo overstims you A LOT while eating you out tits, ass, or thighs? this man fucks hard aftercare with gojo making out & tits gojo loves getting praised so he'll do the favor right back gojo would not complain eating you out for a long time
bratty gojo mirror sex spooning sex late christmas shopping fucking i feel like gojo's top five positions on a certain day would be this subby gojo handcuffed, laying on his back as you ride his face pegging gojo gojo with a pussy hanging by a thread he's all yours i miss gojo ☹ surprise fluff post sub!satoru thoughts another fluff post!! bathroom fun (this can go for really any character but i thought of him while writing it LOL)
actor!reader and actor!gojo has some fun in her dressing room prof!gojo and collegestudent!reader gets it going oooonnn indian!reader and gojo fluff he loves you baddd gojo + handjob heros always gets the job done - spiderman!gojo
suguru geto
gojo and geto overstimming your tits bad time? geto x gojo x you pegging geto calm mean man tongue piercing suguru 1/3 tongue piercing suguru 2/3 tongue piercing suguru 3/3
kiyotaka ijichi
dry humping & making out ijichi + handjob
hiromi higuruma
higurama loves you and your cum!
takuma ino
soft dom ino my birthday gift to my birthday girl
ryomen sukuna
fem!sukuna degradation
toji fushiguro
small titty worship toji just needs to eat out chubby!reader
choso kamo
tongue piercing choso 1/3 tongue piercing choso 2/3 tongue piercing choso 3/3 a silent mean man choso + handjob
kento nanami
polite teasing nanami (i can't write mean nanami it hurts me) nanami + handjob pregnant reader fluff
shoko ieiri
impatient girl ! utahime x you x shoko shoko loves using her strap on you
utahime iori
impatient girl ! utahime x you x shoko more!!
p links
gojo p links #1
smaus
you pretend to be mad & they offer themselves as a peace offering. you win. your text convos with gojo satoru
6K notes · View notes
ullyania-blog · 7 months ago
Text
Tumblr media
bathroom decor pt.2 🫧
hand soap & lotion || brushes || robe ||
coconut milk || hand soap || bathroom set ||
towels || body care || robe ||
toilet brush holder || tray || toilet paper ||
4K notes · View notes
the-kingshound · 1 month ago
Text
Recent IF updates (because if writes have fed us well lately)
Blood of the living (chapter 4) - fields of asphodels book 2
College tennis origin story (chapter 7) - in love
The Eternal Library (chapter 4)
Adoriel's Tears (part of chapter 2) - delicious
Love after death (chapter 3) - I am not ok
Apartment 502 (chapter 2)
The Bastard of camelot (chapter 4 + part of chapter 5)
After Dark (chapter 3)
Press play (chapter 3)
The soulforge order (chapter 2 part 1)
Stygian sun: total Eclypse (chapter 1 part 3) - I am not ok again. Don't touch my sibling
When Twilight strikes (chapter 12)
Burning Academia (chapter 3)
The trials and tribulations of Edward Harcourt (completed game) - criminal that I still have to play it, a bit afraid of the bad endings
Where they wait (VN, completed game)
The Woods Hungers (chapter 3)
Moonlight (chapter 1 part 2)
The Night Market book 2 (chapter 7)
Cantata (chapter 2) - there is lots of food because the author also has another completed if: Viatica
The Sovereign's Ring (new content)
Birds of a rose (new content)
From the mud (chapter 1)
Sentience (new content)
2K notes · View notes
pitflight · 10 months ago
Text
Tumblr media
list of palestinian fundraisers from people who have reached out to me- each has a name, tumblr @, amount raised/goal, gofundme link, verification, and any additional info. please donate if you can and share these families’ fundraisers. additionally, visit their blogs and gofundmes and read their stories in their own words. all of them have persevered through so much, and as many of them have said, it’s not easy to ask for help- take some time to listen to them. this post will be edited regularly with updated information and additional fundraisers. please check the original post and reblogs for updates and share the latest version.
version date: 10/20/24
30 FUNDRAISERS (1-30) BELOW THE CUT ⬇️, 18 AND 26 MORE IN ADDITIONAL REBLOGS- PLEASE SHARE FULL LIST OF 74
1. dina @dinamahammed99 and @dina-my-family $15,566/$50,000 gofundme pinned post verification
2. karam al nabih @karamrafeek £1,063/£7,000 gofundme pinned post post with verification new gofundme (previous had problems, stopped at €13,880)
3. mohammed salem @save-salem-family2 €7,302/€10,000 gofundme pinned post with verification
4. fidaa @fidaa-family2 $61,418/$75,000 gofundme pinned post with verification
5. bilal @shadowyavenuetaco £9,167/£50,000 gofundme main post verification nephew of @/yasermohammad, current short term goal of £9,500
6. mahmoud ayyad @mahmoudayyad €7,395/€55,000 gofundme pinned post verification
7. asmaa ayyad @asmaayyad €25,670/€45,000 gofundme pinned post with verification
8. muhammad imad abdel latif sharab @d-mohammed and @adham89s €4,868/€100,000 gofundme main post verified by 90-ghost on prior blogs that are now inactive
9. motaz @motaz225 kr96,457 SEK/kr250,000 gofundme pinned post verification
10. ahmed jehad @ahmad-syam-blog $6,518 CAD/$40,000 gofundme post with verification (links are dead but gofundme is still up)
11. sara hussein @sara-97a €1,615/€50,000 gofundme post with verification
12. asmaa @asmaamajed2 $10,920/$50,000 gofundme pinned post verification (90-ghost reblog)
13. mohammad @yasermohammad €26,870/€35,000 gofundme pinned post verification bilal @/shadowyavenuetaco’s uncle and family, current short term goal of €27,000
14. salam @save-salam-family €24,937/€40,000 gofundme pinned post verification (90-ghost reblog)
15. marah baalousha @freepaleatine95 $32,861/$50,000 gofundme pinned post verification
16. falestine @falestine-yousef $31,548/$40,000 gofundme post with verification and her family's other gofundmes, including doaa and tahrir (below)
17. ola @olagaza $58,396/$85,000 gofundme pinned post with verification (vetted list links match)
18. ahmad @ahmad-gaza $11,612/$35,000 gofundme post with verification
19. khaled smeer @khaledgazacity $1,688 AUD/$60,000 gofundme main post no verification yet but gofundme is donation protected and very new and reverse image search is clear (links are dead but gofundme is still up)
20. amal @amalgheelan and @amalgaza99 $8,249/$50,000 gofundme pinned post verification
21. doaa @dodoomar12345 @free-gaza2 and @dodoomar12 kr271,530 SEK/kr500,000 and $7,186/$12,000 gofundme 1 gofundme 2 pinned post 1 with verification pinned post 2
22. hanaa @hanaa-yousef and @hanaa987 £30,570/£50,000 gofundme pinned post with verification
23. aseel @aseelo680 $59,608/$100,000 gofundme pinned post verification and art raffle
24. tahrir @tahreer-199 and @tahreer-1990 $12,445/$65,000 gofundme pinned post verification
25. nabila @nabila58 and @nabelamohamed $6,355/$10,000 gofundme main post verification
26. safaa asaad @safaa18mero $24,408/$75,000 gofundme pinned post verification (pinned and blog link dead but verification and gofundme still up)
27. hashem @hashemsh12 and @hashemsh92 €13,026/€45,000 gofundme pinned post verification
28. ahmed @ahmeddahlancampaign €340/€35,000 gofundme main post verified by @/gazavetters #130 (links match)
29. youssef @yousefjehad3 $9,673/$15,000 gofundme pinned post with verification
30. anas al-sharfa @anasalshrafa €12,981/€50,000 gofundme recent post no verification yet but likely legit
4K notes · View notes
theshitpostcalligrapher · 6 months ago
Text
Gävlebocken Cross Stitch
hey yall i just fuckin remembered, the only post I've got for the my Gävle Goat cross stitch pattern is that really long one with the wrong pattern originally, so here's the link to the ko-fi listing for pay-what-you-want (no minimum price) download of the pattern
The pattern looks like this:
Tumblr media
I've only sewn the initial, less clean version myself but I'm working on getting the new design onto the aida
2K notes · View notes
dontlookatme121 · 4 months ago
Text
(Smut) Fic Recs
Pedro Pascal characters, including Javier Peña, (mostly) Joel Miller, Frankie Morales, Oberyn Martell, Marcus Acacius, and Lucien de Leon.
fic recs from a girl who spends too much time reading smut.
Tumblr media
WARNING: PLEASE read the warnings on these fics; almost all of them contain smut, dark themes, and other sensitive topics. read at your own risk. EXPLICIT 18+, MDNI.
Tumblr media
Javier Peña
One-Shots:
FYBF by @almostempty | javier x f!reader
Just Friends by @punkshort | Javier Peña x f!reader
Maneater by @probablyreadinsmut | Javier Peña X Afab!Reader
Murphy’s Sister by @absurdthirst | Javier Peña x F!Reader
Not So Secret Santa by @lincolndjarin | javier peña x fem!reader
Purgatory by @gothcsz | Javier Peña x Fem!Reader x Fem!OC
Strangers by @joelmillerisapunk | Stripper!Javier Peña x f!reader
Series:
Thoroughfare by @gothcsz | Javier Peña x Original Female Character | (Ongoing)
★ my fav fic. you should read it & everything else by Kat!
Fantasize by gothcsz | javier peña x fem!reader | (Ongoing)
Neighbors by gothcsz | javier peña x f!reader | (Complete)
Salvatore by @devilmademewriteit | javier peña x afab!fem!reader | (Last updated 03/2023)
(Un)Faithful by probablyreadinsmut | Rbf!Javier Peña x Married F!Reader | (Ongoing)
Unscripted Desire by gothcsz | Pornstar!Javier x Pornstar!OFC x Fem!Reader | (Ongoing)
Tumblr media
Joel Miller
One-Shots:
blurred lines by stellamarielu | joel miller x female reader
But daddy, I love him! by @sanarsi | older boyfriend!Joel Miller x f!Reader
Cherub by @thechaoticcherub | Priest!Joel Miller x reader
Dusk by gothcsz | No outbreak!Joel x Fem!Reader
Euphoria by sanarsi | professor!Joel Miller x student!f!Reader
For Cryin’ Out Loud by @gracieheartspedro | post-outbreak! joel miller x fem!reader
handsy by @stellamarielu | joel miller x female reader
I'm Happy Where The Devils Are by @dilf-docs | dbf!joel miller x younger!reader
Just This Once by punkshort | dbf!joel miller x f!reader
love thy neighbour by @ace-turned-confused | joel miller x f!reader
Middle of the Night by @frannyzooey | Joel Miller x f!Reader
Not Your Daddy by @celiababy | Pre-outbreak!Joel Miller x f!reader
october's end. by @salingers | joel miller x f!reader
room for three by @morning-star-joy | joel miller x f!reader x arthur morgan
The Christmas Auction by absurdthirst | Joel Miller x F!Reader
TRICK OR TREAT by @maiamore | No outbreak!Joel x Fem!Reader
Tomb rider by @joelspeach | dbf!Joel x female reader
feels so right by @fake-bleach | dbf!joel miller x reader
You're a Daydream, Stay A While by dilf-docs | joel miller x younger!reader
Series:
cowboy like me by @macfrog | dbf!joel miller x f!reader | (Complete)
Dark Shades of Innocence by @mermaidgirl30 | club owner/pleasure dom! Joel x fem! reader | (Complete)
Fourth of July by jrrmint | dbf!joel miller x f!reader | (AO3 Complete)
Give in Again by @pocketfullofkouhuns | No-outbreak!Joel x f!reader | (Complete)
i'll be home for christmas by punkshort | (Hallmark) Joel Miller x f!reader | (Ongoing)
My Burning Sun Will Someday Rise by @littlcdarlin | DBFJoel x f!Reader | (Complete)
right kind of dream by almostempty | joel miller x f!reader | (Complete)
slasher joel by @toxicanonymity | dark!Joel Miller x f!reader | (Ongoing)
Smooth Operator by @penascigarette | Joel Miller x F!Phone Sex Worker | (Ongoing)
swept away by punkshort | Joel Miller x f!reader | (Season 2 ongoing)
The F*CK IT LIST by @auteurdelabre | DBFJoel x f!Reader | (Ongoing)
unbeneath and you under my skin. by @tokkiwrites | mom's fiancé/bf! joel miller x f! | (Ongoing, last updated 11/2024)
worship by @mssalo | Joel Miller x married!f!Reader | (Complete)
i’ve read a lot more joel miller smut than i could’ve ever anticipated (ily dbf!joel)
Tumblr media
Frankie Morales
Series:
The boyfriend act by @capuccinodoll | Frankie Morales x F!reader | (Ongoing)
Tumblr media
Oberyn Martell
One-Shots:
The Watcher by absurdthirst | Modern!Oberyn Martell x F!Reader x Ellaria Sand
What’s Love Got to Do with It by almostempty | oberyn x f!reader
Tumblr media
Marcus Acacius
One-Shots:
III by gothcsz | Marcus Acacius x Fem!Reader x Lucius Verus Aurelius
Blood Favor by @pedgito | Marcus Acacius x f!reader
Prima Nocta by @fuckyeahdindjarin | Marcus Acacius x F!Reader
The Farmer's Daughter by punkshort | Marcus Acacius x f!reader
The Future of Rome by absurdthirst | Marcus Acacius x F!Reader
Tumblr media
Lucien de Leon
One-Shots:
Shameless by @milla-frenchy | Lucien de Leon x fem reader
Tumblr media
there are some of the fics i've read and enjoyed since getting back into fanfiction in july 2024. it's a lot more than i expected, approximately 55. ill be posting monthly fic recs beginning march 2025.
thank you to all these fantastic authors who keep me up at night as i consume unreasonable amounts of smut. you're all amazing <3
dividers by @enchanthings
(updated 2/23/2025)
1K notes · View notes
queerum · 4 days ago
Text
Free (mostly academic) aro theory resources
On Amatonormativity
Amatonormativity, Aromanticism, and What Defines a Relationship - Rilee Granger
Amatonormativity in the Law: An Introduction - Silver Flight
"Allonormativity and Compulsory Sexuality" (chapter 6 of Encyclopedia of Queer Studies in Education) - Stephanie Anne Shelton
'I Dont Want To be a Playa No More': An Exploration of the Denigrating effects of 'Player' as a Stereotype Against African American Polyamorous Men - Justin L. Clardy
On Relationship Anarchy
The short instructional manifesto for relationship anarchy - Andie Nordgren
The Relationship Anarchy website
Thinking Relationship Anarchy from a Queer Feminist Approach - Roma De las Heras Gómez
Beyond romantic love – an analysis of how the dilemma of closeness vs. autonomy is handled in relationship anarchy discourse - Ricardo Guillén
The Ethics of Relationship Anarchy - Ole Martin Moen
On community
Examining aromantic and asexual inclusion in queer-serving organizations - based on Lauren Lichty's work
Exploring Aromanticism Through an Online Qualitative Investigation With the Aromantic Community: “Freeing, Alienating, and Utterly Fantastic” - James Fowler et al.
Community Listening Sessions with Aromantic People: Summary and Recommendations Report
Aurea Aro Census
Sexuality, romantic orientation, and masculinity: Men as underrepresented in asexual and aromantic communities - Hannah Tessler
On QueerPlatonic Relationships
Queerplatonic Zucchinis: A Short Primer - Omnes and Nihil (unsure)
Queering the Nuclear Family - Katie Linder
Queer(ing) consensual nonmonogamies, queering therapy: queer intimacy, kinship, and experiences of CNM in LGBTQIA+ lives - Christian Klesse et al.
On intersectionality
Intimacy and Desire Through the Lens of an Aro-Ace Woman of Color
Being Aroflux & Black - Kimberley Butler
Transitioning into Aromanticism as a Trans Student - Amethyst
Existing and Defying Stereotypes as an A-spec Disabled Person - Sapphire Crimson Claw
A Reflection on the March Carnival of Aros (several testimonies by aros of color and non-cis/non-het aros are linked in this article)
Other aro-related interesting reads
New Dimensions, New Directions: Asexualities and Aromanticism in the 21st Century - Megan Carroll et al.
Enriching the Story: Asexuality and Aromanticism in Literature - Adrienne Whisman
The Importance of Representation for Lesser-Known Sexual Identities on the Example of Asexuality and Aromanticism - Jasmin Kiechle
Experiences of Italian Asexual and Aromantic Individuals in Healthcare Settings: from Explicitly Aggressive to Affirming Interactions
Other lists of aro-related ressources (not all sources listed in these are free though)
by Aurea
The Asexuality and Aromanticism Bibliography
If you know of any other free ressource about aromanticism please consider adding to this list
854 notes · View notes